From: Ulrich Drepper Date: Sun, 5 Sep 1999 17:36:30 +0000 (+0000) Subject: Fix typos. X-Git-Tag: cvs/glibc_2-1-2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f4507a22c1b46af51348c6e4c0d8dce38935a8d;p=thirdparty%2Fglibc.git Fix typos. --- diff --git a/linuxthreads/ptfork.c b/linuxthreads/ptfork.c index 977b0e2581f..2d7ae505b7e 100644 --- a/linuxthreads/ptfork.c +++ b/linuxthreads/ptfork.c @@ -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;