musl-tcc/src/linux/adjtimex.c

8 lines
120 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <sys/timex.h>
#include <time.h>
int adjtimex(struct timex *tx)
{
return clock_adjtime(CLOCK_REALTIME, tx);
}