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