author | Rich Felker <dalias@aerifal.cx> | 2018年09月12日 10:10:14 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018年09月12日 14:34:38 -0400 |
commit | 09e87db555045bf3bcef69c692df24d13b2856fe (patch) | |
tree | 533569f89514c0351d134b9d70e64752077c8ed1 | |
parent | 63a4c9adf227a6f6a5f7f70f6dc3f8863f846927 (diff) | |
download | musl-09e87db555045bf3bcef69c692df24d13b2856fe.tar.gz |
-rw-r--r-- | src/internal/libc.h | 1 | ||||
-rw-r--r-- | src/internal/pthread_impl.h | 1 |
diff --git a/src/internal/libc.h b/src/internal/libc.h index e4fe9e9b..0a279184 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -43,6 +43,7 @@ hidden void __libc_start_init(void); hidden void __funcs_on_exit(void); hidden void __funcs_on_quick_exit(void); hidden void __libc_exit_fini(void); +hidden void __fork_handler(int); extern hidden size_t __hwcap; extern hidden size_t __sysinfo; diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index a89ef9ac..052a5475 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -143,7 +143,6 @@ hidden void *__copy_tls(unsigned char *); hidden void __reset_tls(); hidden void __dl_thread_cleanup(void); -hidden void __fork_handler(int); hidden void __testcancel(); hidden void __do_cleanup_push(struct __ptcb *); hidden void __do_cleanup_pop(struct __ptcb *); |