summaryrefslogtreecommitdiffstats
path: root/libc/unistd/usershell.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/unistd/usershell.c')
-rw-r--r--libc/unistd/usershell.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/unistd/usershell.c b/libc/unistd/usershell.c
index e053d94b7..ea4a04ba4 100644
--- a/libc/unistd/usershell.c
+++ b/libc/unistd/usershell.c
@@ -40,6 +40,8 @@
#include <unistd.h>
#include <paths.h>
+#if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_UNIX98)
+
libc_hidden_proto(fstat)
libc_hidden_proto(fopen)
libc_hidden_proto(fclose)
@@ -48,7 +50,7 @@ libc_hidden_proto(fileno)
libc_hidden_proto(fgets_unlocked)
#ifdef __UCLIBC_HAS_XLOCALE__
libc_hidden_proto(__ctype_b_loc)
-#else
+#elif __UCLIBC_HAS_CTYPE_TABLES__
libc_hidden_proto(__ctype_b)
#endif
@@ -146,3 +148,4 @@ cleanup:
fclose(fp);
return (char **) validsh;
}
+#endif