Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/isblank.c')
-rwxr-xr-xwinsup/mingw/mingwex/isblank.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/mingw/mingwex/isblank.c b/winsup/mingw/mingwex/isblank.c
index d3ba74d39..1dc1246d2 100755
--- a/winsup/mingw/mingwex/isblank.c
+++ b/winsup/mingw/mingwex/isblank.c
@@ -1,5 +1,5 @@
#define __NO_CTYPE_LINES
#include <ctype.h>
-int _cdecl isblank (int c)
+int __cdecl isblank (int c)
{return (_isctype(c, _BLANK) || c == '\t');}