diff options
author | Roland McGrath <roland@gnu.org> | 1995-03-09 10:00:12 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-03-09 10:00:12 +0000 |
commit | 6c2f050742cfb5b3ff6ee96b106409f541eb53bc (patch) | |
tree | f7296a81b8d5524dddfa0aa1cc24342d8ef9ac24 /ctype/ctype-info.c | |
parent | Mon Mar 6 12:34:56 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> (diff) | |
download | glibc-6c2f050742cfb5b3ff6ee96b106409f541eb53bc.tar.gz glibc-6c2f050742cfb5b3ff6ee96b106409f541eb53bc.tar.bz2 glibc-6c2f050742cfb5b3ff6ee96b106409f541eb53bc.zip |
Wed Mar 8 13:38:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* posix/glob/configure.bat: Fixes from DJ.
* time/backward, time/europe, time/northamerica, time/pacificnew,
time/zdump.c, time/zic.c, time/tzfile.h, time/private.h,
time/ialloc.c: Code and data updated from ADO's 95b.
* time/emkdir.c: File removed.
* time/Makefile (distribute, extra-objs, zic): Omit it.
* time/localtime.c: Deansideclized. Never #define __tzname et al
to non-__ names.
* locale/lc-ctype.c (__ctype_tolower, __ctype_toupper): Use int *
instead of short int *.
* ctype/ctype-info.c: Likewise.
* ctype/ctype.h: Likewise.
* locale/langinfo.h (_NL_CTYPE_CLASS): Use this (just one) instead
of EB and EL versions.
Diffstat (limited to 'ctype/ctype-info.c')
-rw-r--r-- | ctype/ctype-info.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ctype/ctype-info.c b/ctype/ctype-info.c index 61f881bb01..a1054b2d16 100644 --- a/ctype/ctype-info.c +++ b/ctype/ctype-info.c @@ -24,8 +24,8 @@ extern const char _nl_C_LC_CTYPE_class[]; extern const char _nl_C_LC_CTYPE_toupper[]; extern const char _nl_C_LC_CTYPE_tolower[]; -#define b(u,x) (((u short int *) _nl_C_LC_CTYPE_##x) + 128); +#define b(u,x) (((u int *) _nl_C_LC_CTYPE_##x) + 128); -const unsigned short int *__ctype_b = b(unsigned, class); -const short int *__ctype_tolower = b(, tolower); -const short int *__ctype_toupper = b(, toupper); +const unsigned short int *__ctype_b = b(unsigned short, class); +const int *__ctype_tolower = b(, tolower); +const int *__ctype_toupper = b(, toupper); |