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