make ldso asm more uniform with rest of codebase (no unnecessary suffixes)
[musl] / src / unistd / unlink.c
index fb57792..bdb37be 100644 (file)
@@ -3,5 +3,5 @@
 
 int unlink(const char *path)
 {
-       return __syscall_unlink(path);
+       return syscall(SYS_unlink, path);
 }