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