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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/userland/libc/stdio/remove.c b/userland/libc/stdio/remove.c
index 39f8af2..374be58 100644
--- a/userland/libc/stdio/remove.c
+++ b/userland/libc/stdio/remove.c
@@ -1,9 +1,9 @@
-#include <stdio.h>
#include <errno.h>
+#include <stdio.h>
extern int errno;
int remove(const char *path) {
- (void)path;
+ (void)path;
// FIXME
errno = ENAMETOOLONG;
return -1;