X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fremove.c;fp=src%2Fstdio%2Fremove.c;h=9e1de7f239f698aac83307c1034863fb902c1501;hb=aa398f56fa398f2202b04e82c67f822f3233786f;hp=8e338277eb967dcbac1f76f8d8994f8b47b8f668;hpb=be82e122bf37fdcd1766d1ed220f0300b30ab6a3;p=musl 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); }