summaryrefslogtreecommitdiff
path: root/libc/unistd
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-02-13 08:05:00 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-02-13 08:05:00 +0000
commit12c4a2b9298f6bb4320509b8bb21ba0aa2d4392d (patch)
tree28723868da4422bb40703447eb3861356ad45ae6 /libc/unistd
parent9f6d68b60130cd04f48735e7400a2ffa94f00443 (diff)
Don't compile daemon.c at all for non-MMU
Diffstat (limited to 'libc/unistd')
-rw-r--r--libc/unistd/Makefile.in5
-rw-r--r--libc/unistd/daemon.c3
2 files changed, 4 insertions, 4 deletions
diff --git a/libc/unistd/Makefile.in b/libc/unistd/Makefile.in
index 84b83b854..2e6696fc0 100644
--- a/libc/unistd/Makefile.in
+++ b/libc/unistd/Makefile.in
@@ -7,7 +7,10 @@
CSRC:= sleep.c usleep.c ualarm.c getpass.c sysconf.c getlogin.c \
fpathconf.c confstr.c pathconf.c swab.c usershell.c \
- getsubopt.c daemon.c
+ getsubopt.c
+ifeq ($(ARCH_HAS_MMU),y)
+CSRC+= daemon.c
+endif
MSRC:=exec.c
MOBJ:=execl.o execv.o execle.o execlp.o execvp.o
diff --git a/libc/unistd/daemon.c b/libc/unistd/daemon.c
index 77e10dd76..03cffc7d1 100644
--- a/libc/unistd/daemon.c
+++ b/libc/unistd/daemon.c
@@ -46,7 +46,6 @@
#include <paths.h>
#include <unistd.h>
-#if defined __ARCH_HAS_MMU__
libc_hidden_proto(open)
libc_hidden_proto(close)
libc_hidden_proto(_exit)
@@ -88,5 +87,3 @@ int daemon( int nochdir, int noclose )
}
return(0);
}
-
-#endif