1#include <sys/timex.h> 2#include <time.h> 3 4int adjtimex(struct timex *tx) 5{ 6 return clock_adjtime(CLOCK_REALTIME, tx); 7} 8