diff options
Diffstat (limited to 'posix/alarm.c')
-rw-r--r-- | posix/alarm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/posix/alarm.c b/posix/alarm.c index 1ecfc4fbb8..33e5c27eeb 100644 --- a/posix/alarm.c +++ b/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) { __set_errno (ENOSYS); return 0; |