summaryrefslogtreecommitdiff
path: root/src/time/nanosleep.c
blob: 5b722ae6aa5b15212c60277b1e75a6634fddfd85 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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)
*/