diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-18 01:10:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-18 01:10:26 +0000 |
commit | 933df87e4e9a8d7f6901dd0417b0006c5b132439 (patch) | |
tree | b5ef20e5b2c3d151fd4de60d4e27ebedc00c82d0 /include | |
parent | e8c6de1939e1f8a2898a0e53134fa175560b9469 (diff) |
libc_hidden_proto removal, a few more functions
Diffstat (limited to 'include')
-rw-r--r-- | include/ctype.h | 9 | ||||
-rw-r--r-- | include/stdio.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/ctype.h b/include/ctype.h index 184b47b51..21314d152 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -101,17 +101,23 @@ enum /* Pointers to the default C-locale data. */ extern const __ctype_mask_t *__C_ctype_b; +libc_hidden_proto(__C_ctype_b) extern const __ctype_touplow_t *__C_ctype_toupper; +libc_hidden_proto(__C_ctype_toupper) extern const __ctype_touplow_t *__C_ctype_tolower; +libc_hidden_proto(__C_ctype_tolower) #ifdef __UCLIBC_HAS_XLOCALE__ extern __const __ctype_mask_t **__ctype_b_loc (void) __attribute__ ((__const)); +libc_hidden_proto(__ctype_b_loc) extern __const __ctype_touplow_t **__ctype_tolower_loc (void) __attribute__ ((__const)); +libc_hidden_proto(__ctype_tolower_loc) extern __const __ctype_touplow_t **__ctype_toupper_loc (void) __attribute__ ((__const)); +libc_hidden_proto(__ctype_toupper_loc) #define __UCLIBC_CTYPE_B (*__ctype_b_loc()) #define __UCLIBC_CTYPE_TOLOWER (*__ctype_tolower_loc()) @@ -121,8 +127,11 @@ extern __const __ctype_touplow_t **__ctype_toupper_loc (void) /* Pointers to the current global locale data in use. */ extern const __ctype_mask_t *__ctype_b; +libc_hidden_proto(__ctype_b) extern const __ctype_touplow_t *__ctype_toupper; +libc_hidden_proto(__ctype_toupper) extern const __ctype_touplow_t *__ctype_tolower; +libc_hidden_proto(__ctype_tolower) #define __UCLIBC_CTYPE_B (__ctype_b) #define __UCLIBC_CTYPE_TOLOWER (__ctype_tolower) diff --git a/include/stdio.h b/include/stdio.h index f14016aa1..feb544de7 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -197,6 +197,7 @@ __BEGIN_NAMESPACE_STD This function is a possible cancellation point and therefore not marked with __THROW. */ extern int fclose (FILE *__stream); +libc_hidden_proto(fclose) /* Flush STREAM, or all streams if STREAM is NULL. This function is a possible cancellation point and therefore not @@ -318,6 +319,7 @@ __BEGIN_NAMESPACE_STD marked with __THROW. */ extern int fprintf (FILE *__restrict __stream, __const char *__restrict __format, ...); +libc_hidden_proto(fprintf) /* Write formatted output to stdout. This function is a possible cancellation point and therefore not |