diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-23 15:22:33 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-23 15:22:33 -0500 |
| commit | 1221e834f49adb91eb0b7443a57274f2611459c2 (patch) | |
| tree | 7afb7ed5a203ddefd5559005af7ec61d801b972e /src/unistd/pipe.c | |
| parent | f546f27d1fdb8d2663b2fbb130f53ee32cac90b0 (diff) | |
compile in current environment
Diffstat (limited to 'src/unistd/pipe.c')
| -rw-r--r-- | src/unistd/pipe.c | 2 |
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) |
