From fbddfbecee23457eafea1f5b2aa3b9a43076bb75 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 10 Sep 1999 19:26:16 +0000 Subject: [PATCH] (towupper): Fix typo (was towuppert). --- wctype/wctype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wctype/wctype.h b/wctype/wctype.h index 2ecd33a7115..2ff8e68c89b 100644 --- a/wctype/wctype.h +++ b/wctype/wctype.h @@ -244,7 +244,7 @@ extern __const __int32_t *__ctype_toupper; /* Case conversions. */ # define towlower(wc) \ (__builtin_constant_p (wc) && (wc) >= L'\0' && (wc) <= L'\xff' \ ? (wint_t) __ctype_tolower[wc] : towlower (wc)) -# define towuppert(wc) \ +# define towupper(wc) \ (__builtin_constant_p (wc) && (wc) >= L'\0' && (wc) <= L'\xff' \ ? (wint_t) __ctype_toupper[wc] : towupper (wc)) -- 2.47.2