X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fctype%2Fisdigit.c;fp=lib%2Fcrtdll%2Fctype%2Fisdigit.c;h=0000000000000000000000000000000000000000;hp=e84881d49a6312f751051d5cf67bb5603977cef1;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/crtdll/ctype/isdigit.c b/lib/crtdll/ctype/isdigit.c deleted file mode 100644 index e84881d..0000000 --- a/lib/crtdll/ctype/isdigit.c +++ /dev/null @@ -1,15 +0,0 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include - - -#undef isdigit -int isdigit(int c) -{ - return _isctype(c, _DIGIT); -} - -#undef iswdigit -int iswdigit(wint_t c) -{ - return iswctype(c, _DIGIT); -}