diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-04-20 12:39:28 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-04-20 12:39:28 -0400 |
commit | 2e3f9f3d62453b563fc0f9c4a79982ef0b03d24a (patch) | |
tree | 96b1726481535d65dacd329f0027bf61226b8bb9 /gcc/gcov.c | |
parent | 65ed39df8921bc120c4202d4e50e94ffe72da5cb (diff) | |
download | gcc-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.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; } |