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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c
index 5ab8b5e7..26e97dea 100644
--- a/src/unistd/pipe.c
+++ b/src/unistd/pipe.c
@@ -2,12 +2,12 @@
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/assert.h"
-#include "nonstd/syscall.h"
+#include "../_syscall.h"
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)