diff options
author | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 23:57:22 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 23:57:22 -0500 |
commit | a784e502472fb3a1afa4d01a47c66b52d23e00f6 (patch) | |
tree | 5ebaa084119dcffe41671a62e2e799b172c57d24 /locale/lc-ctype.c | |
parent | NEWS (diff) | |
download | glibc-a784e502472fb3a1afa4d01a47c66b52d23e00f6.tar.gz glibc-a784e502472fb3a1afa4d01a47c66b52d23e00f6.tar.bz2 glibc-a784e502472fb3a1afa4d01a47c66b52d23e00f6.zip |
Remove pre-ISO C support
No more __const.
Diffstat (limited to 'locale/lc-ctype.c')
-rw-r--r-- | locale/lc-ctype.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/locale/lc-ctype.c b/locale/lc-ctype.c index f2530afe5c..95d35a4947 100644 --- a/locale/lc-ctype.c +++ b/locale/lc-ctype.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_CTYPE category. - Copyright (C) 1995,1996,1997,1998,1999,2000,2002,2003,2005,2008 + Copyright (C) 1995,1996,1997,1998,1999,2000,2002,2003,2005,2008,2012 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -79,9 +79,9 @@ _nl_postload_ctype (void) /* We must use the exported names to access these so we are sure to be accessing the main executable's copy if it has COPY relocs. */ - extern __const unsigned short int *__ctype_b; /* Characteristics. */ - extern __const __int32_t *__ctype_tolower; /* Case conversions. */ - extern __const __int32_t *__ctype_toupper; /* Case conversions. */ + extern const unsigned short int *__ctype_b; /* Characteristics. */ + extern const __int32_t *__ctype_tolower; /* Case conversions. */ + extern const __int32_t *__ctype_toupper; /* Case conversions. */ extern const uint32_t *__ctype32_b; extern const uint32_t *__ctype32_toupper; |