diff options
Diffstat (limited to 'src/unistd/close.c')
-rw-r--r-- | src/unistd/close.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/close.c b/src/unistd/close.c index a2105f50..7da59568 100644 --- a/src/unistd/close.c +++ b/src/unistd/close.c @@ -17,3 +17,11 @@ int close(int fd) if (r == -EINTR) r = 0; return __syscall_ret(r); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |