diff options
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index 4f8d89c..d4b27da 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -1,5 +1,5 @@ /* CPP main program, using CPP Library. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1997 Free Software Foundation, Inc. Written by Per Bothner, 1994-95. This program is free software; you can redistribute it and/or modify it @@ -20,14 +20,16 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding! */ -#include "cpplib.h" -#include <stdio.h> - #ifndef EMACS #include "config.h" -#endif /* not EMACS */ +#include "system.h" +#else +#include <stdio.h> extern char *getenv (); +#endif /* not EMACS */ + +#include "cpplib.h" char *progname; |