update for HEAD-2003021201
[reactos.git] / lib / msvcrt / wstring / wcsupr.c
index 27db416..1eeef91 100644 (file)
@@ -1,11 +1,12 @@
+#include <msvcrt/ctype.h>
 #include <msvcrt/string.h>
 
 wchar_t *_wcsupr(wchar_t *x)
 {
-       wchar_t  *y=x;
+       wchar_t  *y = x;
 
        while (*y) {
-               *y=towupper(*y);
+               *y = towupper(*y);
                y++;
        }
        return x;