summaryrefslogtreecommitdiff
path: root/posix/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/sleep.c')
-rw-r--r--posix/sleep.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/posix/sleep.c b/posix/sleep.c
index 0ae79c1c4b..447510e411 100644
--- a/posix/sleep.c
+++ b/posix/sleep.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -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;