summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libc/stdio/popen.c2
-rw-r--r--libc/stdlib/system.c2
-rw-r--r--libc/stdlib/unix_grantpt.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/libc/stdio/popen.c b/libc/stdio/popen.c
index a77a82e66..ddf881899 100644
--- a/libc/stdio/popen.c
+++ b/libc/stdio/popen.c
@@ -14,7 +14,7 @@
/* uClinux-2.0 has vfork, but Linux 2.0 doesn't */
#include <sys/syscall.h>
-#if ! defined __NR_vfork && defined __UCLIBC_HAS_MMU__
+#if ! defined __NR_vfork
#define vfork fork
#endif
diff --git a/libc/stdlib/system.c b/libc/stdlib/system.c
index 8f654045e..b15d601aa 100644
--- a/libc/stdlib/system.c
+++ b/libc/stdlib/system.c
@@ -6,7 +6,7 @@
/* uClinux-2.0 has vfork, but Linux 2.0 doesn't */
#include <sys/syscall.h>
-#if ! defined __NR_vfork && defined __UCLIBC_HAS_MMU__
+#if ! defined __NR_vfork
#define vfork fork
#endif
diff --git a/libc/stdlib/unix_grantpt.c b/libc/stdlib/unix_grantpt.c
index c29612e81..49e65d16d 100644
--- a/libc/stdlib/unix_grantpt.c
+++ b/libc/stdlib/unix_grantpt.c
@@ -33,7 +33,7 @@
/* uClinux-2.0 has vfork, but Linux 2.0 doesn't */
#include <sys/syscall.h>
-#if ! defined __NR_vfork && defined __UCLIBC_HAS_MMU__
+#if ! defined __NR_vfork
#define vfork fork
#endif