summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/isblank.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/ctype/isblank.c')
-rw-r--r--userland/libc/ctype/isblank.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/ctype/isblank.c b/userland/libc/ctype/isblank.c
index 488fa88..88ffa0b 100644
--- a/userland/libc/ctype/isblank.c
+++ b/userland/libc/ctype/isblank.c
@@ -1,5 +1,5 @@
#include <ctype.h>
int isblank(int c) {
- return (c == ' ' || c == '\t');
+ return (c == ' ' || c == '\t');
}