summaryrefslogtreecommitdiff
path: root/src/unistd/alarm.c
blob: ff96dbaadae2e6f675f0c0d6b739f6864898d9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"

unsigned alarm(unsigned seconds)
{
	#if 0
	SC(unsigned, seconds);
	#else
	return seconds;
	#endif
}
/*
POSIX(1)
*/