diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 14:49:09 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 14:49:09 +0000 |
commit | e385ba0d0df0854d3f46df7bc37785ef4422f278 (patch) | |
tree | f752d766a8f50590ba0c5f9319146a2cc911648f /libc/stdio/vswprintf.c | |
parent | 960acb5e3248b2ba657f65ea011703c57539c5a8 (diff) |
Hide some of the f* *printf, use them as well
Diffstat (limited to 'libc/stdio/vswprintf.c')
-rw-r--r-- | libc/stdio/vswprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdio/vswprintf.c b/libc/stdio/vswprintf.c index a5839b7bd..d7dca5e49 100644 --- a/libc/stdio/vswprintf.c +++ b/libc/stdio/vswprintf.c @@ -13,7 +13,7 @@ #warning Skipping vswprintf since no buffering! #else /* __STDIO_BUFFERS */ -int vswprintf(wchar_t *__restrict buf, size_t size, +int attribute_hidden __vswprintf(wchar_t *__restrict buf, size_t size, const wchar_t * __restrict format, va_list arg) { FILE f; @@ -66,5 +66,6 @@ int vswprintf(wchar_t *__restrict buf, size_t size, } return rv; } +strong_alias(__vswprintf,vswprintf) #endif /* __STDIO_BUFFERS */ |