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