summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/unistd/alarm.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/unistd/alarm.c b/src/unistd/alarm.c
index 00130347..2adaff7c 100644
--- a/src/unistd/alarm.c
+++ b/src/unistd/alarm.c
@@ -5,11 +5,7 @@
unsigned alarm(unsigned seconds)
{
- #if 0
- SC(unsigned, seconds);
- #else
- return seconds;
- #endif
+ SYSCALL(alarm, unsigned, 0, seconds, 0, 0, 0, 0, 0);
}
/*
POSIX(1)