diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-13 00:20:31 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-13 00:20:31 +0000 |
commit | 2ed5f8c28a510515125d3389a5450057e825be31 (patch) | |
tree | cdba67403c5947eb75029e272f38f6a77c1491c7 /gcc | |
parent | ba7ff9f9fe73f5f570489e88d753fb220ef44fa3 (diff) | |
download | gcc-2ed5f8c28a510515125d3389a5450057e825be31.zip gcc-2ed5f8c28a510515125d3389a5450057e825be31.tar.gz gcc-2ed5f8c28a510515125d3389a5450057e825be31.tar.bz2 |
Include stdio.h last.
From-SVN: r5766
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/bc-emit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c index 8b2e750..62cc533 100644 --- a/gcc/bc-emit.c +++ b/gcc/bc-emit.c @@ -18,7 +18,6 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <stdio.h> #include "config.h" #include "gvarargs.h" #include "machmode.h" @@ -34,6 +33,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "bc-typecd.h" #include "bi-run.h" +#include <stdio.h> + extern char *xmalloc (), *xrealloc (); extern void free (); |