summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/remove.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/stdio/remove.c')
-rw-r--r--userland/libc/stdio/remove.c1
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;