aboutsummaryrefslogtreecommitdiff
path: root/lib/csu
diff options
context:
space:
mode:
authorNate Williams <nate@FreeBSD.org>1996-01-30 05:55:20 +0000
committerNate Williams <nate@FreeBSD.org>1996-01-30 05:55:20 +0000
commit98c4ae7b2ba18fa260ae8b42cd7d32cbabb44395 (patch)
tree8ee0d1bd253e21726afb6dc6eaf02080110bea01 /lib/csu
parent72ef2e6080fbd45695bd9ea4c9e11f89c26ae0ff (diff)
Notes
Diffstat (limited to 'lib/csu')
-rw-r--r--lib/csu/i386/crt0.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/csu/i386/crt0.c b/lib/csu/i386/crt0.c
index 2cd03c30e34a..d36cc29238ed 100644
--- a/lib/csu/i386/crt0.c
+++ b/lib/csu/i386/crt0.c
@@ -98,7 +98,6 @@ extern start() asm("start");
extern mcount() asm ("mcount");
extern int main(int argc, char **argv, char **envp);
int __syscall(int syscall,...);
-void _thread_init();
#ifdef MCRT0
void monstartup(void *low, void *high);
#endif /* MCRT0 */
@@ -182,13 +181,6 @@ asm("eprol:");
monstartup(&eprol, &etext);
#endif /* MCRT0 */
- /*
- * Initialize the initial thread.
- * This function might be a stub if libc does not
- * contain thread support.
- */
- _thread_init();
-
asm ("__callmain:"); /* Defined for the benefit of debuggers */
exit(main(kfp->kargc, argv, environ));
}