diff options
Diffstat (limited to 'posix/sleep.c')
-rw-r--r-- | posix/sleep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/posix/sleep.c b/posix/sleep.c index 0ae79c1..b5a7077 100644 --- a/posix/sleep.c +++ b/posix/sleep.c @@ -28,8 +28,7 @@ signal afterwards is undefined. There is no return value to indicate error, but if `sleep' returns SECONDS, it probably didn't work. */ unsigned int -__sleep (seconds) - unsigned int seconds; +__sleep (unsigned int seconds) { __set_errno (ENOSYS); return seconds; |