blob: 8fed39c6d3efb25da2641b405fa6521aa898a25a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <sys/timex.h>
#include <time.h>
int adjtimex(struct timex *tx)
{
return clock_adjtime(CLOCK_REALTIME, tx);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|