diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-21 05:20:52 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-21 05:20:52 +0000 |
commit | 0f83aa066efc2023ccb7415e4f39486160124f2a (patch) | |
tree | e2aca4011f43bc3cc5a8d938bccaa80e4625da0c /libc/unistd/usershell.c | |
parent | 11a333eb28a6f70fabfff69ccb4b07c0a6e4d75a (diff) | |
download | uClibc-alpine-0f83aa066efc2023ccb7415e4f39486160124f2a.tar.bz2 uClibc-alpine-0f83aa066efc2023ccb7415e4f39486160124f2a.tar.xz |
Merge from trunk.
Diffstat (limited to 'libc/unistd/usershell.c')
-rw-r--r-- | libc/unistd/usershell.c | 5 |
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 |