blob: 2e76fa6a01a404b59b8b437cccaa223a7c01858d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#if 0
#include <time.h>
#include "_syscall.h"
int nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
{
SYSCALL(nanosleep, int, -1, rqtp, rmtp, 0, 0, 0, 0);
}
/*
POSIX(199309)
*/
#endif
|