mirror of
https://github.com/fluencelabs/musl
synced 2025-05-28 15:11:34 +00:00
10 lines
196 B
C
10 lines
196 B
C
|
#define _GNU_SOURCE
|
||
|
#include <time.h>
|
||
|
#include <sys/timex.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int clock_adjtime (clockid_t clock_id, struct timex *utx)
|
||
|
{
|
||
|
return syscall(SYS_clock_adjtime, clock_id, utx);
|
||
|
}
|