summaryrefslogtreecommitdiff
path: root/src/unistd/alarm.c
blob: 2d2d897a7dfd45a95ec04c857056e4bb7a58e051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if 0

#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)
*/


#endif