This commit is contained in:
Darren Tucker 2013-02-15 11:50:03 +11:00
parent 3c4a24c3e3
commit 62e4edc797

View File

@ -242,7 +242,8 @@ strdup(const char *str)
#endif #endif
#ifndef HAVE_ISBLANK #ifndef HAVE_ISBLANK
int isblank(int c) int
isblank(int c)
{ {
return (c == ' ' || c == '\t'); return (c == ' ' || c == '\t');
} }