diff options
Diffstat (limited to 'src/unistd/posix_close.c')
-rw-r--r-- | src/unistd/posix_close.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/posix_close.c b/src/unistd/posix_close.c index 90f51a82..8418886b 100644 --- a/src/unistd/posix_close.c +++ b/src/unistd/posix_close.c @@ -4,3 +4,11 @@ int posix_close(int fd, int flags) { return close(fd); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |