branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / ctype / isspace.c
diff --git a/lib/crtdll/ctype/isspace.c b/lib/crtdll/ctype/isspace.c
deleted file mode 100644 (file)
index 723b8b0..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS system libraries
- * FILE:        lib/crtdll/ctype/isspace.c
- * PURPOSE:     Test for a space character
- * PROGRAMER:   Boudewijn Dekker
- * UPDATE HISTORY:
- *              28/12/98: Created
- */
-
-#include <msvcrt/ctype.h>
-
-
-#undef isspace
-int isspace(int c)
-{
-  return _isctype(c,_SPACE);
-}
-
-#undef iswspace
-int iswspace(wint_t c)
-{
-  return iswctype(c,_SPACE);
-}