diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-03-21 22:34:35 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-03-21 22:34:35 +0000 |
commit | d4eb89201886c2a3b5505d829402e69ed6cfb0b3 (patch) | |
tree | d79fad2d14047c9e5b4282b4d0cb9bbe454e8746 /newlib/libc/stdio/vfprintf.c | |
parent | 257e3d8e89205acc418ba4e3d3fd953b1422f8c2 (diff) | |
download | cygnal-d4eb89201886c2a3b5505d829402e69ed6cfb0b3.tar.gz cygnal-d4eb89201886c2a3b5505d829402e69ed6cfb0b3.tar.bz2 cygnal-d4eb89201886c2a3b5505d829402e69ed6cfb0b3.zip |
2005-03-21 Nicholas Wourms <nwourms@netscape.net>
* libc/stdio/vfprintf.c: Move newlib.h before _WANT_IO_POS_ARGS test,
since _WANT_IO_POS_ARGS is now defined in there. Remove duplicate
reent.h include.
Diffstat (limited to 'newlib/libc/stdio/vfprintf.c')
-rw-r--r-- | newlib/libc/stdio/vfprintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c index 70a765e80..c10fed8e9 100644 --- a/newlib/libc/stdio/vfprintf.c +++ b/newlib/libc/stdio/vfprintf.c @@ -157,6 +157,7 @@ static char *rcsid = "$Id$"; * * This code is large and complicated... */ +#include <newlib.h> #ifdef INTEGER_ONLY #define VFPRINTF vfiprintf @@ -176,8 +177,6 @@ static char *rcsid = "$Id$"; #include <_ansi.h> #include <reent.h> -#include <newlib.h> -#include <reent.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |