fix %n specifier, again. this time it was storing the wrong value.
[musl] / src / unistd / alarm.c
1 #include <unistd.h>
2 #include "syscall.h"
3
4 unsigned alarm(unsigned seconds)
5 {
6         return syscall1(__NR_alarm, seconds);
7 }