branch update for HEAD-2003050101
[reactos.git] / lib / msvcrt / ctype / toupper.c
index 0b926b8..7b05bad 100644 (file)
@@ -11,7 +11,7 @@ int toupper(int c)
 }
 
 #undef towupper
-wchar_t towupper(wchar_t c)
+int towupper(wint_t c)
 {
    if (iswctype (c, _LOWER))
       return (c + (L'A' - L'a'));