From 1221e834f49adb91eb0b7443a57274f2611459c2 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 23 Feb 2019 15:22:33 -0500 Subject: compile in current environment --- src/unistd/pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/pipe.c') 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) -- cgit v1.2.1