summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/stubs.c
diff options
context:
space:
mode:
authorMarkos Chandras <markos.chandras@imgtec.com>2012-10-11 11:01:37 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-02-20 13:45:12 +0100
commit11372c665a2db1ec81fb6128fe535c39bcca7b6c (patch)
tree2464823b6c17cf79fd587e4b7b826a29c69c9b43 /libc/sysdeps/linux/common/stubs.c
parent58570fc8e1fd601f15be5758ab95013d56771804 (diff)
fork: Use clone if arch does not have the fork syscall
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/stubs.c')
-rw-r--r--libc/sysdeps/linux/common/stubs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/stubs.c b/libc/sysdeps/linux/common/stubs.c
index 845c9bb01..419557c6a 100644
--- a/libc/sysdeps/linux/common/stubs.c
+++ b/libc/sysdeps/linux/common/stubs.c
@@ -128,7 +128,7 @@ make_stub(fgetxattr)
make_stub(flistxattr)
#endif
-#ifndef __NR_fork
+#if !defined __NR_fork && !defined __NR_clone
make_stub(fork)
#endif