diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-09 13:52:08 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-09 13:52:08 +0000 |
commit | 60acdef20530daeaa65cbce8bb2a14c22bc0ed00 (patch) | |
tree | 6d1fff9381cd8f517706bf8de2e0a875f6688b35 /libc/stdio/_stdio.h | |
parent | 1b3c855bc3dff600ee36bbafc3b3ad2d471d8df4 (diff) |
Implement all needed hidden *printf and correct vasprintf, thx blindvt
Diffstat (limited to 'libc/stdio/_stdio.h')
-rw-r--r-- | libc/stdio/_stdio.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libc/stdio/_stdio.h b/libc/stdio/_stdio.h index e4aa5d740..7dd105cce 100644 --- a/libc/stdio/_stdio.h +++ b/libc/stdio/_stdio.h @@ -19,6 +19,17 @@ #include <string.h> #include <unistd.h> +extern int __vfprintf (FILE *__restrict __s, __const char *__restrict __format, + __gnuc_va_list __arg) attribute_hidden; + +extern int __vsnprintf (char *__restrict __s, size_t __maxlen, + __const char *__restrict __format, __gnuc_va_list __arg) + __THROW __attribute__ ((__format__ (__printf__, 3, 0))) attribute_hidden; + +extern int __vfwprintf (__FILE *__restrict __s, + __const wchar_t *__restrict __format, + __gnuc_va_list __arg) attribute_hidden; + #ifdef __UCLIBC_HAS_WCHAR__ #include <wchar.h> #endif |