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