| Index: fusl/src/unistd/sleep.c
|
| diff --git a/fusl/src/unistd/sleep.c b/fusl/src/unistd/sleep.c
|
| index d64509413e54b5f408a6285ad527d3977cb46556..e54f669900eab667bd51db50709dba055294dc2e 100644
|
| --- a/fusl/src/unistd/sleep.c
|
| +++ b/fusl/src/unistd/sleep.c
|
| @@ -1,10 +1,9 @@
|
| #include <unistd.h>
|
| #include <time.h>
|
|
|
| -unsigned sleep(unsigned seconds)
|
| -{
|
| - struct timespec tv = { .tv_sec = seconds, .tv_nsec = 0 };
|
| - if (nanosleep(&tv, &tv))
|
| - return tv.tv_sec;
|
| - return 0;
|
| +unsigned sleep(unsigned seconds) {
|
| + struct timespec tv = {.tv_sec = seconds, .tv_nsec = 0};
|
| + if (nanosleep(&tv, &tv))
|
| + return tv.tv_sec;
|
| + return 0;
|
| }
|
|
|