diff options
Diffstat (limited to 'newlib/libc/stdio/vfprintf.c')
-rw-r--r-- | newlib/libc/stdio/vfprintf.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c index e81b068ee..3497bac80 100644 --- a/newlib/libc/stdio/vfprintf.c +++ b/newlib/libc/stdio/vfprintf.c @@ -278,7 +278,9 @@ err: uio->uio_iovcnt = 0; return EOF; } -#endif /* INTEGER_ONLY */ +#else /* !INTEGER_ONLY */ +int __ssprint_r (struct _reent *, FILE *, register struct __suio *); +#endif /* !INTEGER_ONLY */ #else /* !STRING_ONLY */ #ifdef INTEGER_ONLY @@ -322,7 +324,9 @@ out: uio->uio_iovcnt = 0; return (err); } -#endif /* INTEGER_ONLY */ +#else /* !INTEGER_ONLY */ +int __sprint_r (struct _reent *, FILE *, register struct __suio *); +#endif /* !INTEGER_ONLY */ /* * Helper function for `fprintf to unbuffered unix file': creates a |