From: Ulrich Drepper Date: Fri, 10 Sep 1999 19:26:16 +0000 (+0000) Subject: (towupper): Fix typo (was towuppert). X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbddfbecee23457eafea1f5b2aa3b9a43076bb75;p=thirdparty%2Fglibc.git (towupper): Fix typo (was towuppert). --- 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))