branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / ctype / isupper.c
diff --git a/lib/crtdll/ctype/isupper.c b/lib/crtdll/ctype/isupper.c
deleted file mode 100644 (file)
index a7e67b2..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/ctype.h>
-
-
-#undef isupper
-int isupper(int c)
-{
-    return _isctype(c, _UPPER);
-}
-
-int iswupper(wint_t c)
-{
-    return iswctype(c, _UPPER);
-}