Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
signal
x32
setitimer.c
pretty
plain
permalink
blame
history
•
7 lines
•
192 B
1
#include <sys/time.h>
2
#include "syscall.h"
3
4
int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old)
5
{
6
	return syscall(SYS_setitimer, which, new, old);
7
}