diff options
-rw-r--r-- | newlib/ChangeLog | 9 | ||||
-rw-r--r-- | newlib/libc/stdio/vasiprintf.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdio/vasprintf.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdio/vsiprintf.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdio/vsniprintf.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdio/vsnprintf.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdio/vsprintf.c | 2 |
7 files changed, 21 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 59e177a..143b02a 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,14 @@ 2011-08-19 Ralf Corsépius <ralf.corsepius@rtems.org> + * libc/stdio/vasiprintf.c: Include "local.h" for "_svfiprintf_r". + * libc/stdio/vasprintf.c Include "local.h" for "_svfprintf_r". + * libc/stdio/vsiprintf.c: Include "local.h" for "_svfiprintf_r". + * libc/stdio/vsniprintf.c: Include "local.h" for "_svfiprintf_r". + * libc/stdio/vsnprintf.c: Include "local.h" for "_svfprintf_r" + * libc/stdio/vsprintf.c: Include "local.h" for "_svfprintf_r" + +2011-08-19 Ralf Corsépius <ralf.corsepius@rtems.org> + * libc/string/bcmp.c: Include <strings.h> for "bcmp". * libc/string/bcopy.c: Include <strings.h> for "bcopy". * libc/string/strcasestr.c: Include <strings.h> for "strncasecmp". diff --git a/newlib/libc/stdio/vasiprintf.c b/newlib/libc/stdio/vasiprintf.c index 671bbdb..15310cc 100644 --- a/newlib/libc/stdio/vasiprintf.c +++ b/newlib/libc/stdio/vasiprintf.c @@ -26,6 +26,8 @@ static char sccsid[] = "%W% (Berkeley) %G%"; #include <limits.h> #include <stdarg.h> +#include "local.h" + #ifndef _REENT_ONLY int diff --git a/newlib/libc/stdio/vasprintf.c b/newlib/libc/stdio/vasprintf.c index 525c696..b89f4db 100644 --- a/newlib/libc/stdio/vasprintf.c +++ b/newlib/libc/stdio/vasprintf.c @@ -26,6 +26,8 @@ static char sccsid[] = "%W% (Berkeley) %G%"; #include <limits.h> #include <stdarg.h> +#include "local.h" + #ifndef _REENT_ONLY int diff --git a/newlib/libc/stdio/vsiprintf.c b/newlib/libc/stdio/vsiprintf.c index 05d009d..150b4e7 100644 --- a/newlib/libc/stdio/vsiprintf.c +++ b/newlib/libc/stdio/vsiprintf.c @@ -26,6 +26,8 @@ static char sccsid[] = "%W% (Berkeley) %G%"; #include <limits.h> #include <stdarg.h> +#include "local.h" + #ifndef _REENT_ONLY int diff --git a/newlib/libc/stdio/vsniprintf.c b/newlib/libc/stdio/vsniprintf.c index f7c60e2..c4305c1 100644 --- a/newlib/libc/stdio/vsniprintf.c +++ b/newlib/libc/stdio/vsniprintf.c @@ -27,6 +27,8 @@ static char sccsid[] = "%W% (Berkeley) %G%"; #include <stdarg.h> #include <errno.h> +#include "local.h" + #ifndef _REENT_ONLY int diff --git a/newlib/libc/stdio/vsnprintf.c b/newlib/libc/stdio/vsnprintf.c index 641047d..58106b6 100644 --- a/newlib/libc/stdio/vsnprintf.c +++ b/newlib/libc/stdio/vsnprintf.c @@ -27,6 +27,8 @@ static char sccsid[] = "%W% (Berkeley) %G%"; #include <stdarg.h> #include <errno.h> +#include "local.h" + #ifndef _REENT_ONLY int diff --git a/newlib/libc/stdio/vsprintf.c b/newlib/libc/stdio/vsprintf.c index fd052cd..9ab0c73 100644 --- a/newlib/libc/stdio/vsprintf.c +++ b/newlib/libc/stdio/vsprintf.c @@ -26,6 +26,8 @@ static char sccsid[] = "%W% (Berkeley) %G%"; #include <limits.h> #include <stdarg.h> +#include "local.h" + #ifndef _REENT_ONLY int |