This commit is contained in:
Darren Tucker 2013-02-15 11:50:03 +11:00
parent 3c4a24c3e3
commit 62e4edc797
1 changed files with 2 additions and 1 deletions

View File

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