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