summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-02-15 11:50:03 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-02-15 11:50:03 +1100
commit62e4edc797a284f551e7faa616af06f8c3c24015 (patch)
treefeed327b35792b1c98baec121289fc2147ff29fa /openbsd-compat/bsd-misc.c
parent3c4a24c3e329ccca86629ed694b9756309b00113 (diff)
spacing
Diffstat (limited to 'openbsd-compat/bsd-misc.c')
-rw-r--r--openbsd-compat/bsd-misc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 0cff2e423..ad524b8b7 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -242,7 +242,8 @@ strdup(const char *str)
242#endif 242#endif
243 243
244#ifndef HAVE_ISBLANK 244#ifndef HAVE_ISBLANK
245int isblank(int c) 245int
246isblank(int c)
246{ 247{
247 return (c == ' ' || c == '\t'); 248 return (c == ' ' || c == '\t');
248} 249}