diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-15 20:23:33 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-15 20:23:33 +0000 |
commit | 5da06322c21e27d5bc60459ae2f80a80d2c8162b (patch) | |
tree | d514819fb0e47354537c701f67d04e4f336ac792 /libc/stdio/old_vfprintf.c | |
parent | cc9da0a85c21f4c5c5e340ef5f7a86c6821476b5 (diff) |
Hide more of stdio,getdents, use internal __raise
Diffstat (limited to 'libc/stdio/old_vfprintf.c')
-rw-r--r-- | libc/stdio/old_vfprintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/stdio/old_vfprintf.c b/libc/stdio/old_vfprintf.c index 23cb10f94..8caa3d66d 100644 --- a/libc/stdio/old_vfprintf.c +++ b/libc/stdio/old_vfprintf.c @@ -217,7 +217,7 @@ typedef void (__fp_outfunc_t)(FILE *fp, intptr_t type, intptr_t len, intptr_t buf); extern size_t _fpmaxtostr(FILE * fp, __fpmax_t x, struct printf_info *info, - __fp_outfunc_t fp_outfunc); + __fp_outfunc_t fp_outfunc) attribute_hidden; static void _charpad(FILE * __restrict stream, int padchar, size_t numpad) { @@ -261,8 +261,8 @@ static const char spec[] = "+-#0 "; /**********************************************************************/ -extern void _store_inttype(void *dest, int desttype, uintmax_t val); -extern uintmax_t _load_inttype(int desttype, const void *src, int uflag); +extern void _store_inttype(void *dest, int desttype, uintmax_t val) attribute_hidden; +extern uintmax_t _load_inttype(int desttype, const void *src, int uflag) attribute_hidden; /* * In order to ease translation to what arginfo and _print_info._flags expect, |