summaryrefslogtreecommitdiff
path: root/src/unistd/alarm.c
blob: 2adaff7c8241e9d044168f18e094aa27d2c2f1ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "../_syscall.h"

unsigned alarm(unsigned seconds)
{
	SYSCALL(alarm, unsigned, 0, seconds, 0, 0, 0, 0, 0);
}
/*
POSIX(1)
*/