summaryrefslogtreecommitdiff
path: root/src/unistd/alarm.c
blob: 00130347a15d5146c0ee424098e5af52d0252b78 (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 "../_syscall.h"

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