summaryrefslogtreecommitdiff
path: root/src/time/nanosleep.c
blob: cb1cfef7138a40a2eb18d36c9f5eba500a2bf5bd (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)
*/