diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/glob.h | 4 | ||||
-rw-r--r-- | include/langinfo.h | 6 | ||||
-rw-r--r-- | include/stdlib.h | 5 | ||||
-rw-r--r-- | include/unistd.h | 11 | ||||
-rw-r--r-- | include/wordexp.h | 6 |
5 files changed, 32 insertions, 0 deletions
diff --git a/include/glob.h b/include/glob.h index d248cf6bc1..d83cf5ce53 100644 --- a/include/glob.h +++ b/include/glob.h @@ -1,6 +1,10 @@ #ifndef _GLOB_H #include <posix/glob.h> +libc_hidden_proto (glob) +libc_hidden_proto (globfree) +libc_hidden_proto (globfree64) + /* Now define the internal interfaces. */ extern int __glob_pattern_p (__const char *__pattern, int __quote); extern int __glob64 (__const char *__pattern, int __flags, diff --git a/include/langinfo.h b/include/langinfo.h index 2a81c6ddaf..82ff070c89 100644 --- a/include/langinfo.h +++ b/include/langinfo.h @@ -1 +1,7 @@ +#ifndef _LANGINFO_H + #include <locale/langinfo.h> + +libc_hidden_proto (nl_langinfo) + +#endif diff --git a/include/stdlib.h b/include/stdlib.h index c681aecf65..48ff8a034d 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -14,6 +14,11 @@ libc_hidden_proto (abort) libc_hidden_proto (getenv) libc_hidden_proto (bsearch) libc_hidden_proto (qsort) +libc_hidden_proto (ecvt_r) +libc_hidden_proto (fcvt_r) +libc_hidden_proto (qecvt_r) +libc_hidden_proto (qfcvt_r) +libc_hidden_proto (lrand48_r) libc_hidden_proto (__secure_getenv) libc_hidden_proto (__strtof_internal) libc_hidden_proto (__strtod_internal) diff --git a/include/unistd.h b/include/unistd.h index b25a3b808d..10fd603e17 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,6 +1,17 @@ #ifndef _UNISTD_H # include <posix/unistd.h> +libc_hidden_proto (_exit) +libc_hidden_proto (alarm) +libc_hidden_proto (confstr) +libc_hidden_proto (execl) +libc_hidden_proto (execle) +libc_hidden_proto (execlp) +libc_hidden_proto (execvp) +libc_hidden_proto (getpid) +libc_hidden_proto (getsid) + + /* Now define the internal interfaces. */ extern int __access (__const char *__name, int __type); extern int __euidaccess (__const char *__name, int __type); diff --git a/include/wordexp.h b/include/wordexp.h index 64e036e062..27ae0454c5 100644 --- a/include/wordexp.h +++ b/include/wordexp.h @@ -1 +1,7 @@ +#ifndef _WORDEXP_H + #include <posix/wordexp.h> + +libc_hidden_proto (wordfree) + +#endif |