From c7f625ab33b480748cb58d1ad86200ce35be981c Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Sat, 12 Mar 2011 19:53:39 +0100
Subject: [PATCH 001/396] wordexp.c, sysconf.c: include ctype.h for isspace

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
---
 libc/misc/wordexp/wordexp.c |    1 +
 libc/unistd/sysconf.c       |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/libc/misc/wordexp/wordexp.c b/libc/misc/wordexp/wordexp.c
index 700ea2c..f970131 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 c1b3c86..bef6bb2 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>
-- 
1.7.0.4

