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.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c
new file mode 100644
index 00000000..2dfc9c99
--- /dev/null
+++ b/src/unistd/pipe.c
@@ -0,0 +1,7 @@
+#include <unistd.h>
+#include "syscall.h"
+
+int pipe(int fd[2])
+{
+ return syscall1(__NR_pipe, (long)fd);
+}