summaryrefslogtreecommitdiff
path: root/src/unistd/sleep.c
blob: 1e884f8e0e2db848aa9f6348ea4d24b3ca7ba47f (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 sleep(unsigned seconds)
{
	#if 0
	SC(unsigned, seconds);
	#else
	return seconds;
	#endif
}
/*
POSIX(1)
*/