diff options
Diffstat (limited to 'src/unistd/pipe.c')
-rw-r--r-- | src/unistd/pipe.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c index d07b8d24..b0c690ea 100644 --- a/src/unistd/pipe.c +++ b/src/unistd/pipe.c @@ -9,3 +9,11 @@ int pipe(int fd[2]) return syscall(SYS_pipe2, fd, 0); #endif } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |