From 0b7d48d1062e4383b4a78e0bb78c5f0f29479780 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Wed, 5 May 2021 17:15:57 +0200 Subject: nptl: Move sem_close, sem_open into libc The symbols were moved using move-symbol-to-libc.py. Both functions are moved at the same time because they depend on internal functions in sysdeps/pthread/sem_routines.c, which are moved in this commit as well. Additional hidden prototypes are required to avoid check-localplt failures. Reviewed-by: Adhemerval Zanella --- include/stdlib.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/stdlib.h') diff --git a/include/stdlib.h b/include/stdlib.h index cdbdbf3..e2453c1 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -91,6 +91,7 @@ extern int __setenv (const char *__name, const char *__value, int __replace) extern int __unsetenv (const char *__name) attribute_hidden; extern int __clearenv (void) attribute_hidden; extern char *__mktemp (char *__template) __THROW __nonnull ((1)); +libc_hidden_proto (__mktemp) extern char *__canonicalize_file_name (const char *__name); extern char *__realpath (const char *__name, char *__resolved); libc_hidden_proto (__realpath) -- cgit v1.1