summaryrefslogtreecommitdiffstats
path: root/libc/stdlib/atexit.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 01:52:28 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 01:52:28 +0000
commit450f92eb7165131ff3fdb2f80ec2fc65254f5ccb (patch)
tree4a0260d6717520379b98af80419feda2ca7cea29 /libc/stdlib/atexit.c
parent6fd3ac79613c9e1832513b0f614860be2735993f (diff)
downloaduClibc-alpine-450f92eb7165131ff3fdb2f80ec2fc65254f5ccb.tar.bz2
uClibc-alpine-450f92eb7165131ff3fdb2f80ec2fc65254f5ccb.tar.xz
Merge from trunk.
Diffstat (limited to 'libc/stdlib/atexit.c')
-rw-r--r--libc/stdlib/atexit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c
index e9710b038..a01fb29e2 100644
--- a/libc/stdlib/atexit.c
+++ b/libc/stdlib/atexit.c
@@ -95,7 +95,7 @@ extern struct exit_function *__exit_function_table;
#else
extern struct exit_function __exit_function_table[__UCLIBC_MAX_ATEXIT];
#endif
-extern struct exit_function *__new_exitfn (void);
+extern struct exit_function *__new_exitfn (void) attribute_hidden;
/* this is in the L___cxa_atexit object */
extern int __cxa_atexit (cxaefuncp, void *arg, void *dso_handle);
@@ -237,7 +237,7 @@ struct exit_function __exit_function_table[__UCLIBC_MAX_ATEXIT];
* Find and return a new exit_function pointer, for atexit,
* onexit and __cxa_atexit to initialize
*/
-struct exit_function *__new_exitfn(void)
+struct exit_function attribute_hidden *__new_exitfn(void)
{
struct exit_function *efp;