diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-09-07 20:37:13 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-09-07 20:37:13 +0000 |
commit | 96e88994f8e12b046778f58f3765466843aafba6 (patch) | |
tree | fab6b4302fd98288b77e7de3eaee5e8a87529208 /libiberty/vprintf.c | |
parent | 25074193a09a9c2261d7d2987d561333245999af (diff) | |
download | gcc-96e88994f8e12b046778f58f3765466843aafba6.zip gcc-96e88994f8e12b046778f58f3765466843aafba6.tar.gz gcc-96e88994f8e12b046778f58f3765466843aafba6.tar.bz2 |
mkstemp.c: Include config.h even when not IN_GCC.
* mkstemp.c: Include config.h even when not IN_GCC. Wrap header
inclusions inside HAVE_*_H macros. Include ansidecl.h when not
IN_GCC.
* vasprintf.c: Include stdarg.h/varargs.h first.
* vprintf.c: Likewise.
From-SVN: r22314
Diffstat (limited to 'libiberty/vprintf.c')
-rw-r--r-- | libiberty/vprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/vprintf.c b/libiberty/vprintf.c index 89c289e..65b425a 100644 --- a/libiberty/vprintf.c +++ b/libiberty/vprintf.c @@ -1,9 +1,9 @@ -#include <stdio.h> #ifdef __STDC__ #include <stdarg.h> #else #include <varargs.h> #endif +#include <stdio.h> #include <ansidecl.h> #undef vprintf int |