musl - an implementation of the standard library for Linux-based systems
blob: e9d727cf3af40caf6859a21694ff451148a9b576 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <sys/timex.h>
#include <time.h>
int adjtimex(struct timex *tx)
{
return clock_adjtime(CLOCK_REALTIME, tx);
}
|