From 821032f942a2c79809c508f2a19be3536deb88ed Mon Sep 17 00:00:00 2001 From: drepper Date: Sat, 21 Jun 1997 02:27:31 +0000 Subject: [PATCH] Pretty print. --- wctype/wctype.h | 7 ++++--- 1 file 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 +#include __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) -- 2.11.0