diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-29 21:02:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-29 21:02:08 +0000 |
commit | 2607bee41906da4f47d98a92749c11533396838c (patch) | |
tree | 0ac6b10026422c6863e63d843305c2ac2f3030f8 /libc/stdlib/atexit.c | |
parent | ceb83067f2248eb6f9517440c127250c98bbd8f3 (diff) |
Patch by Joseph S. Myers to add support for ARM EABI
Diffstat (limited to 'libc/stdlib/atexit.c')
-rw-r--r-- | libc/stdlib/atexit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c index cad25feb1..99f59e293 100644 --- a/libc/stdlib/atexit.c +++ b/libc/stdlib/atexit.c @@ -157,6 +157,7 @@ int on_exit(oefuncp func, void *arg) #endif #ifdef L___cxa_atexit +libc_hidden_proto(__cxa_atexit) extern int __cxa_atexit (cxaefuncp func, void *arg, void *dso_handle) { struct exit_function *efp; @@ -178,6 +179,7 @@ extern int __cxa_atexit (cxaefuncp func, void *arg, void *dso_handle) return 0; } +libc_hidden_def(__cxa_atexit) #endif #ifdef L___cxa_finalize |