diff options
Diffstat (limited to 'lib/libc/unistd/pipe.c')
| -rw-r--r-- | lib/libc/unistd/pipe.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libc/unistd/pipe.c b/lib/libc/unistd/pipe.c new file mode 100644 index 00000000..4f8e0e98 --- /dev/null +++ b/lib/libc/unistd/pipe.c @@ -0,0 +1,6 @@ +#include <syscall.h> + +int pipe(int fildes[2]) +{ + return syscall(pipe, fildes); +} |
