summaryrefslogtreecommitdiff
path: root/ctype/ctype-info.c
diff options
context:
space:
mode:
Diffstat (limited to 'ctype/ctype-info.c')
-rw-r--r--ctype/ctype-info.c8
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);