aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcov.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1997-04-20 12:39:28 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1997-04-20 12:39:28 -0400
commit2e3f9f3d62453b563fc0f9c4a79982ef0b03d24a (patch)
tree96b1726481535d65dacd329f0027bf61226b8bb9 /gcc/gcov.c
parent65ed39df8921bc120c4202d4e50e94ffe72da5cb (diff)
downloadgcc-2e3f9f3d62453b563fc0f9c4a79982ef0b03d24a.zip
gcc-2e3f9f3d62453b563fc0f9c4a79982ef0b03d24a.tar.gz
gcc-2e3f9f3d62453b563fc0f9c4a79982ef0b03d24a.tar.bz2
Use symbolic codes for exit.
From-SVN: r13938
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r--gcc/gcov.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/gcov.c b/gcc/gcov.c
index 86107ac..fe9dce8 100644
--- a/gcc/gcov.c
+++ b/gcc/gcov.c
@@ -1,7 +1,6 @@
/* Gcov.c: prepend line execution counts and branch probabilities to a
source file.
- Copyright (C) 1990, 1991, 1992, 1993, 1994, 1996, 1997 Free Software
- Foundation, Inc.
+ Copyright (C) 1990, 91, 92, 93, 94, 96, 1997 Free Software Foundation, Inc.
Contributed by James E. Wilson of Cygnus Support.
Mongled by Bob Manson of Cygnus Support.
@@ -252,7 +251,7 @@ xmalloc (size)
if (value == 0)
{
fprintf (stderr, "error: virtual memory exhausted");
- exit (1);
+ exit (FATAL_EXIT_CODE);
}
return value;
}