global cleanup to use the new syscall interface
[musl] / src / stdio / remove.c
index 8e33827..9e1de7f 100644 (file)
@@ -3,5 +3,5 @@
 
 int remove(const char *path)
 {
-       return __syscall_unlink(path);
+       return syscall(SYS_unlink, path);
 }