summaryrefslogtreecommitdiff
path: root/lib/libc_r/uthread/uthread_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc_r/uthread/uthread_init.c')
-rw-r--r--lib/libc_r/uthread/uthread_init.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/libc_r/uthread/uthread_init.c b/lib/libc_r/uthread/uthread_init.c
index 84148b4f567..e25a70c0afa 100644
--- a/lib/libc_r/uthread/uthread_init.c
+++ b/lib/libc_r/uthread/uthread_init.c
@@ -296,22 +296,4 @@ _thread_init(void)
return;
}
-
-/*
- * Use the a.out .init symbol to start the thread package going
- */
-extern void __init_threads __P((void)) asm(".init");
-void __init_threads() {
- _thread_init();
-}
-
-/*
- * Use elf's ld.so _init symbol to start the thread package going
- */
-extern int _init __P((void));
-int _init() {
- _thread_init();
- return 0;
-}
-
#endif _THREAD_SAFE