]> sourceware.org Git - newlib-cygwin.git/commitdiff
2011-05-22 Antoine LECA <antoinel@users.sourceforge.net>
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>
Mon, 23 May 2011 02:38:49 +0000 (02:38 +0000)
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>
Mon, 23 May 2011 02:38:49 +0000 (02:38 +0000)
        * mingwex/isblank.c:  Fix typo in declaration.

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

index 33dcf97154911794173b2dbd3bcd1f488601a41e..4c5de35c8242593a4a69642f2367552beab6a685 100644 (file)
@@ -1,3 +1,7 @@
+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.
index d3ba74d39502859f6c04f1fd7ad9faf2b3caa911..1dc1246d28aad1336a55509059cf4cfc251530c1 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');}
This page took 0.034801 seconds and 5 git commands to generate.