diff options
Diffstat (limited to 'sysdeps/posix/alarm.c')
-rw-r--r-- | sysdeps/posix/alarm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/posix/alarm.c b/sysdeps/posix/alarm.c index 002366462c..f7d97f1f33 100644 --- a/sysdeps/posix/alarm.c +++ b/sysdeps/posix/alarm.c @@ -26,8 +26,7 @@ to 0 and check its value after calling `alarm', and this might tell you. The signal may come late due to processor scheduling. */ unsigned int -alarm (seconds) - unsigned int seconds; +alarm (unsigned int seconds) { struct itimerval old, new; unsigned int retval; |