posix-clock_gettime.c 106 B

12345678910
  1. #include <time.h>
  2. int
  3. main(void)
  4. {
  5. struct timespec ts;
  6. return (clock_gettime(CLOCK_REALTIME, &ts));
  7. }