diff options
Diffstat (limited to 'userland/libc/stdio/remove.c')
-rw-r--r-- | userland/libc/stdio/remove.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/stdio/remove.c b/userland/libc/stdio/remove.c index 35b41ad..39f8af2 100644 --- a/userland/libc/stdio/remove.c +++ b/userland/libc/stdio/remove.c @@ -3,6 +3,7 @@ extern int errno; int remove(const char *path) { + (void)path; // FIXME errno = ENAMETOOLONG; return -1; |