Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
time
nanosleep.c
pretty
plain
permalink
blame
history
•
7 lines
•
180 B
1
#include <time.h>
2
#include "syscall.h"
3
4
int nanosleep(const struct timespec *req, struct timespec *rem)
5
{
6
	return __syscall_ret(-__clock_nanosleep(CLOCK_REALTIME, 0, req, rem));
7
}