this sets the stage for having the conversion logic for 64-bit time_t all in one file, and as a bonus makes clock_adjtime for CLOCK_REALTIME work even on kernels too old to have the clock_adjtime syscall.
8 lines
120 B
C
8 lines
120 B
C
#include <sys/timex.h>
|
|
#include <time.h>
|
|
|
|
int adjtimex(struct timex *tx)
|
|
{
|
|
return clock_adjtime(CLOCK_REALTIME, tx);
|
|
}
|