summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-22 07:16:50 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-22 07:16:50 +0000
commitf5faeff83458b4dc618ca83edd2dd33dbe63c15d (patch)
treebcb91681964a240a692a0a08a5164bcb969611e9 /libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c
parent8a4b70a7f3d55ce8cdeba9775c7344c1a951bc79 (diff)
downloaduClibc-alpine-f5faeff83458b4dc618ca83edd2dd33dbe63c15d.tar.bz2
uClibc-alpine-f5faeff83458b4dc618ca83edd2dd33dbe63c15d.tar.xz
Add in MIPS-specific implementation of 'vfork' and clean up other files in NPTL to fit within the uClibc infrastructure.
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c b/libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c
index a1e228ee2..8569ef0bf 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c
@@ -18,7 +18,9 @@
02111-1307 USA. */
#include <unistd.h>
-
+#ifdef __UCLIBC__
+extern pid_t __libc_fork(void);
+#endif
pid_t
__fork (void)