summaryrefslogtreecommitdiff
path: root/posix/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/sleep.c')
-rw-r--r--posix/sleep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/posix/sleep.c b/posix/sleep.c
index 0ae79c1c4b..b5a7077d02 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;