summaryrefslogtreecommitdiff
path: root/src/unistd/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/pipe.c')
-rw-r--r--src/unistd/pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c
index 0ceb1181..5ab8b5e7 100644
--- a/src/unistd/pipe.c
+++ b/src/unistd/pipe.c
@@ -7,7 +7,7 @@
int pipe(int fildes[2])
{
ASSERT_NONNULL(fildes);
- SC(int, fildes);
+ SYSCALL("pipe", int, -1, fildes, 0, 0, 0, 0, 0);
}
/*
POSIX(1)