diff options
Diffstat (limited to 'src/unistd/sleep.c')
-rw-r--r-- | src/unistd/sleep.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/sleep.c b/src/unistd/sleep.c index d6450941..b4d68c63 100644 --- a/src/unistd/sleep.c +++ b/src/unistd/sleep.c @@ -8,3 +8,11 @@ unsigned sleep(unsigned seconds) return tv.tv_sec; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |