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