summaryrefslogtreecommitdiff
path: root/wctype/wctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'wctype/wctype.h')
-rw-r--r--wctype/wctype.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/wctype/wctype.h b/wctype/wctype.h
index b67995918d..9c9258f183 100644
--- a/wctype/wctype.h
+++ b/wctype/wctype.h
@@ -22,9 +22,10 @@
*/
#ifndef _WCTYPE_H
-
#define _WCTYPE_H 1
+
#include <features.h>
+#include <gnu/types.h>
__BEGIN_DECLS
@@ -197,8 +198,8 @@ extern wint_t towctrans __P ((wint_t __wc, wctrans_t __desc));
#endif
/* Pointer to conversion tables. */
-extern __const int *__ctype_tolower; /* Case conversions. */
-extern __const int *__ctype_toupper; /* Case conversions. */
+extern __const __int32_t *__ctype_tolower; /* Case conversions. */
+extern __const __int32_t *__ctype_toupper; /* Case conversions. */
#define towlower(wc) towctrans ((wc), __ctype_tolower)
#define towupper(wc) towctrans ((wc), __ctype_toupper)