mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 00:51:41 +00:00
8 lines
174 B
C
8 lines
174 B
C
#include <sys/time.h>
|
|
#include "syscall.h"
|
|
|
|
int setitimer(int which, const struct itimerval *new, struct itimerval *old)
|
|
{
|
|
return syscall(SYS_setitimer, which, new, old);
|
|
}
|