summaryrefslogtreecommitdiff
path: root/src/unistd/pipe.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-12 10:03:53 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-12 10:03:53 -0400
commita97a1ed57051fc0c4e2f2f803a4d6a734689cbdc (patch)
tree55ebd06aae0741b3e4bfe975f7d91dc63b0c6a24 /src/unistd/pipe.c
parent4f50d3e580761fd3c44fe8ed0db57858c5295f25 (diff)
remove __syscall_lookup()
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 b682f872..26e97dea 100644
--- a/src/unistd/pipe.c
+++ b/src/unistd/pipe.c
@@ -7,7 +7,7 @@
int pipe(int fildes[2])
{
ASSERT_NONNULL(fildes);
- SYSCALL("pipe", int, -1, fildes, 0, 0, 0, 0, 0);
+ SYSCALL(pipe, int, -1, fildes, 0, 0, 0, 0, 0);
}
/*
POSIX(1)