diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-23 03:18:04 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-23 03:18:04 +0000 |
commit | aa39b0b2f79973652cbe219eaf580dd02bfb6670 (patch) | |
tree | da509552c3be6e2fe908df1ad9540588be58b5e7 /libc/stdio/_vfprintf.c | |
parent | 9fe852f17f0d07dca9f33ef862618a3bd3cb3df0 (diff) | |
download | uClibc-alpine-aa39b0b2f79973652cbe219eaf580dd02bfb6670.tar.bz2 uClibc-alpine-aa39b0b2f79973652cbe219eaf580dd02bfb6670.tar.xz |
Merge from trunk.
Diffstat (limited to 'libc/stdio/_vfprintf.c')
-rw-r--r-- | libc/stdio/_vfprintf.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/libc/stdio/_vfprintf.c b/libc/stdio/_vfprintf.c index a32960f2e..f4bbb1c1e 100644 --- a/libc/stdio/_vfprintf.c +++ b/libc/stdio/_vfprintf.c @@ -512,10 +512,6 @@ size_t parse_printf_format(register const char *template, /**********************************************************************/ #ifdef L__ppfs_init -#ifdef __UCLIBC_HAS_LOCALE__ -libc_hidden_proto(__global_locale) -#endif - int attribute_hidden _ppfs_init(register ppfs_t *ppfs, const char *fmt0) { int r; @@ -736,7 +732,7 @@ void attribute_hidden _ppfs_setargs(register ppfs_t *ppfs) #ifdef __UCLIBC_HAS_XLOCALE__ libc_hidden_proto(__ctype_b_loc) -#else +#elif __UCLIBC_HAS_CTYPE_TABLES__ libc_hidden_proto(__ctype_b) #endif @@ -1254,10 +1250,6 @@ static size_t _fp_out_narrow(FILE *fp, intptr_t type, intptr_t len, intptr_t buf #define _outnwcs(stream, wstring, len) _wstdio_fwrite(wstring, len, stream) #define FP_OUT _fp_out_wide -#ifdef __UCLIBC_HAS_LOCALE__ -libc_hidden_proto(__global_locale) -#endif - static size_t _outnstr(FILE *stream, const char *s, size_t wclen) { /* NOTE!!! len here is the number of wchars we want to generate!!! */ |