HAVE_MONOTONIC_CLOCK.c 166 B

12345678
  1. #include <sys/time.h>
  2. #include <time.h>
  3. #include <unistd.h>
  4. int main(int argc, char** argv)
  5. {
  6. struct timespec tval;
  7. return clock_gettime(CLOCK_MONOTONIC, &tval);
  8. }