blob: 63190d068101fa334f87c14eeb4e2616b4e36c52 (
plain)
1
2
3
4
5
6
7
8
|
#include <time.h>
#include <syscall.h>
int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp,
struct timespec *rmtp)
{
return __syscall(nanosleep, clock_id, flags, rqtp, rmtp) * -1;
}
|