diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-12-10 00:33:55 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-12-10 00:33:55 +0000 |
commit | 2ae7d9d676817895acb58a95f45ed88e4626c04d (patch) | |
tree | 93e88f6dac31d3d18da4591080f494ff3f158769 /lib/libc_r/uthread/uthread_init.c | |
parent | ac86a0e364b3332ce6c007a699a31f788a636999 (diff) |
split automatic init into own file
Diffstat (limited to 'lib/libc_r/uthread/uthread_init.c')
-rw-r--r-- | lib/libc_r/uthread/uthread_init.c | 18 |
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 |