OSDN Git Service

2011-05-22 Antoine LECA <antoinel@users.sourceforge.net>
authorironhead <ironhead>
Mon, 23 May 2011 02:38:48 +0000 (02:38 +0000)
committerironhead <ironhead>
Mon, 23 May 2011 02:38:48 +0000 (02:38 +0000)
        * mingwex/isblank.c:  Fix typo in declaration.

winsup/mingw/ChangeLog
winsup/mingw/mingwex/isblank.c

index 33dcf97..4c5de35 100644 (file)
@@ -1,5 +1,9 @@
 2011-05-22  Antoine LECA  <antoinel@users.sourceforge.net>
 
+       * mingwex/isblank.c:  Fix typo in declaration.
+
+2011-05-22  Antoine LECA  <antoinel@users.sourceforge.net>
+
        * include/_mingw.h:  Define GCC system_header only if PCC is not defined.
        * include/stdlib.h:  Fix a long-standing typo which prevented correct use of
        the MB_CUR_MAX macro/variable when DECLSPEC is not supported and <stdlib.h>
index d3ba74d..1dc1246 100755 (executable)
@@ -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');}