about summary refs log tree commit diff
path: root/src/stdio/remove.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/remove.c')
-rw-r--r--src/stdio/remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/remove.c b/src/stdio/remove.c
index 8e338277..9e1de7f2 100644
--- a/src/stdio/remove.c
+++ b/src/stdio/remove.c
@@ -3,5 +3,5 @@
 
 int remove(const char *path)
 {
-	return __syscall_unlink(path);
+	return syscall(SYS_unlink, path);
 }