2011-05-22 Antoine LECA <antoinel@users.sourceforge.net>

* mingwex/isblank.c:  Fix typo in declaration.
This commit is contained in:
Chris Sutcliffe 2011-05-23 02:38:49 +00:00
parent ecf22d8044
commit 69080f58f0
2 changed files with 5 additions and 1 deletions

View 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.

View File

@ -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');}