]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix typos.
authorUlrich Drepper <drepper@redhat.com>
Sun, 5 Sep 1999 17:36:30 +0000 (17:36 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 5 Sep 1999 17:36:30 +0000 (17:36 +0000)
linuxthreads/ptfork.c

index 977b0e2581fafd6cb89649c8206d630e4cb810cd..2d7ae505b7ee035978e004c2faedbe2b0f89c08c 100644 (file)
@@ -73,9 +73,9 @@ static inline void pthread_call_handlers(struct handler_list * list)
   for (/*nothing*/; list != NULL; list = list->next) (list->handler)();
 }
 
-extern int __fork(void);
+extern int __libc_fork(void);
 
-pid_t fork(void)
+pid_t __fork(void)
 {
   pid_t pid;
   struct handler_list * prepare, * child, * parent;