From 933df87e4e9a8d7f6901dd0417b0006c5b132439 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 18 Nov 2008 01:10:26 +0000 Subject: libc_hidden_proto removal, a few more functions --- include/ctype.h | 9 +++++++++ include/stdio.h | 2 ++ 2 files changed, 11 insertions(+) (limited to 'include') 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 -- cgit v1.2.3