diff options
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index c7fdf53..0a45e86 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -40,6 +40,13 @@ cpp_options options; #ifdef abort /* More 'friendly' abort that prints the line and file. config.h can #define abort fancy_abort if you like that sort of thing. */ +void +fatal (s) + char *s; +{ + fputs (s, stderr); + exit (FATAL_EXIT_CODE); +} void fancy_abort () |