#ifndef PIPE_H #define PIPE_H #include "syscalls.h" #define PIPE_IN 1 #define PIPE_OUT 0 static int pipe(int *filedes) { return syscall(PIPE, filedes); } #endif