summaryrefslogtreecommitdiff
path: root/include/ctype.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:10:26 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:10:26 +0000
commit933df87e4e9a8d7f6901dd0417b0006c5b132439 (patch)
treeb5ef20e5b2c3d151fd4de60d4e27ebedc00c82d0 /include/ctype.h
parente8c6de1939e1f8a2898a0e53134fa175560b9469 (diff)
libc_hidden_proto removal, a few more functions
Diffstat (limited to 'include/ctype.h')
-rw-r--r--include/ctype.h9
1 files changed, 9 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)