musl/src/linux/clock_adjtime.c

10 lines
196 B
C
Raw Normal View History

#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);
}