Browse Source

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>
Peter S. Mazinger 13 years ago
parent
commit
f774d42e14
2 changed files with 2 additions and 0 deletions
  1. 1 0
      libc/misc/wordexp/wordexp.c
  2. 1 0
      libc/unistd/sysconf.c

+ 1 - 0
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>

+ 1 - 0
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>