diff options
Diffstat (limited to 'libc/stdlib/atexit.c')
-rw-r--r-- | libc/stdlib/atexit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c index 99f59e293..75972b57d 100644 --- a/libc/stdlib/atexit.c +++ b/libc/stdlib/atexit.c @@ -158,7 +158,7 @@ int on_exit(oefuncp func, void *arg) #ifdef L___cxa_atexit libc_hidden_proto(__cxa_atexit) -extern int __cxa_atexit (cxaefuncp func, void *arg, void *dso_handle) +int __cxa_atexit (cxaefuncp func, void *arg, void *dso_handle) { struct exit_function *efp; |