diff options
Diffstat (limited to 'lib/libkse/thread/thr_fork.c')
-rw-r--r-- | lib/libkse/thread/thr_fork.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libkse/thread/thr_fork.c b/lib/libkse/thread/thr_fork.c index 08ea812..8c112e8 100644 --- a/lib/libkse/thread/thr_fork.c +++ b/lib/libkse/thread/thr_fork.c @@ -41,7 +41,7 @@ #include "pthread_private.h" pid_t -fork(void) +_libc_fork(void) { int i, flags; pid_t ret; @@ -220,4 +220,6 @@ fork(void) /* Return the process ID: */ return (ret); } + +__weak_reference(_libc_fork, fork); #endif |