]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(towupper): Fix typo (was towuppert).
authorUlrich Drepper <drepper@redhat.com>
Fri, 10 Sep 1999 19:26:16 +0000 (19:26 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 10 Sep 1999 19:26:16 +0000 (19:26 +0000)
wctype/wctype.h

index 2ecd33a71159810f322f6614a6c835835e087230..2ff8e68c89bcf76185517700186f51ccb435337d 100644 (file)
@@ -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))