X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Funistd%2Fpipe.c;h=36c6f13e7a1684acb6340f4e59338d99fd9fcf32;hb=0d4d1a96e4fd827267250e469affc7ebfc44324f;hp=2dfc9c995f0666aa18358496f6eed2fb16a07b88;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c index 2dfc9c99..36c6f13e 100644 --- a/src/unistd/pipe.c +++ b/src/unistd/pipe.c @@ -3,5 +3,5 @@ int pipe(int fd[2]) { - return syscall1(__NR_pipe, (long)fd); + return syscall(SYS_pipe, fd); }