diff options
Diffstat (limited to 'userland/libc/stdlib/realpath.c')
-rw-r--r-- | userland/libc/stdlib/realpath.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/stdlib/realpath.c b/userland/libc/stdlib/realpath.c index 438ed8d..5589032 100644 --- a/userland/libc/stdlib/realpath.c +++ b/userland/libc/stdlib/realpath.c @@ -1,6 +1,7 @@ #include <assert.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> // FIXME: This is nowhere near complete char *realpath(const char *filename, char *resolvedname) { |