summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
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}