diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-20 17:48:24 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-20 17:48:24 +0000 |
commit | e89dc919b230615eb17c137034a81f27beb56de8 (patch) | |
tree | 9b8f7b837cb11e4b0efebae38925b506710aacfa /libc/unistd/daemon.c | |
parent | 039fefad93deee41292caff324f78ff1e74b437d (diff) | |
download | uClibc-alpine-e89dc919b230615eb17c137034a81f27beb56de8.tar.bz2 uClibc-alpine-e89dc919b230615eb17c137034a81f27beb56de8.tar.xz |
Add missing header file for daemon.c, add missing functions into unistd.h.
I still need to implement getlogin.c fpathconf.c, but they are required
for IEEE Std. 1003.13-1998 POSIX_FILE_SYSTEM conformance and we don't
have them yet. But we will very very soon. :-)
-Erik
Diffstat (limited to 'libc/unistd/daemon.c')
-rw-r--r-- | libc/unistd/daemon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/unistd/daemon.c b/libc/unistd/daemon.c index 4542f51f8..10473cf74 100644 --- a/libc/unistd/daemon.c +++ b/libc/unistd/daemon.c @@ -26,6 +26,7 @@ * Original copyright notice is retained at the end of this file. */ +#include <stdio.h> #include <features.h> #include <fcntl.h> #include <paths.h> |