summaryrefslogtreecommitdiff
path: root/lib/libc/time/nanosleep.c
blob: 2d4332481882eed7cf5f1bcbe32632daa03a8104 (plain)
1
2
3
4
5
6
7
8
9


#include <syscall.h> // for __syscall_2, syscall
#include <time.h>    // for nanosleep

int nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
{
	return syscall(nanosleep, rqtp, rmtp);
}