diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-10-04 22:26:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-10-04 22:26:07 +0000 |
commit | 977216264f4ef4c2ebeb9d30435c17a950fed6e6 (patch) | |
tree | b43b4b36da948adf32ace8f819e5d8e23085947f /libc/sysdeps/linux/common/fork.c | |
parent | da595aca3aef049535b12fdcec0e77c787286779 (diff) |
Do not stub out functions for mmu-less systems. Hide all
prototypes for functions disabled on mmu-less systems.
Diffstat (limited to 'libc/sysdeps/linux/common/fork.c')
-rw-r--r-- | libc/sysdeps/linux/common/fork.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libc/sysdeps/linux/common/fork.c b/libc/sysdeps/linux/common/fork.c index 987626587..9f87ea4e2 100644 --- a/libc/sysdeps/linux/common/fork.c +++ b/libc/sysdeps/linux/common/fork.c @@ -13,11 +13,5 @@ #ifdef __ARCH_HAS_MMU__ #define __NR___libc_fork __NR_fork _syscall0(pid_t, __libc_fork); -#else -pid_t __libc_fork(void) -{ - __set_errno(ENOSYS); - return -1; -} -#endif weak_alias(__libc_fork, fork); +#endif |