adjtimex_time32.c 176 B

12345678910
  1. #include "time32.h"
  2. #include <time.h>
  3. #include <sys/timex.h>
  4. struct timex32;
  5. int __adjtimex_time32(struct timex32 *tx32)
  6. {
  7. return __clock_adjtime32(CLOCK_REALTIME, tx32);
  8. }