summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-12 19:53:39 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:20 +0200
commitf774d42e1428c831184220560b6c0241bdc75f8b (patch)
treea0b15af89b2bd49f9ee2696b4e44f6f6a1f0d73c /libc
parent0eaaf662b70806181b7fe2a1b165769f4e48d0f0 (diff)
wordexp.c, sysconf.c: include ctype.h for isspace
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc')
-rw-r--r--libc/misc/wordexp/wordexp.c1
-rw-r--r--libc/unistd/sysconf.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/libc/misc/wordexp/wordexp.c b/libc/misc/wordexp/wordexp.c
index 700ea2c23..f9701314d 100644
--- a/libc/misc/wordexp/wordexp.c
+++ b/libc/misc/wordexp/wordexp.c
@@ -21,6 +21,7 @@
#include <features.h>
#include <bits/kernel-features.h>
+#include <ctype.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <fcntl.h>
diff --git a/libc/unistd/sysconf.c b/libc/unistd/sysconf.c
index c049dc98d..66486ae9e 100644
--- a/libc/unistd/sysconf.c
+++ b/libc/unistd/sysconf.c
@@ -19,6 +19,7 @@
#define _XOPEN_SOURCE 500
#include <features.h>
+#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <grp.h>