summaryrefslogtreecommitdiff
path: root/sysutils/clockspeed/files/tryclock_gettime.c
blob: 0e5bd1c445c5c1555bab4461a80134b6a894806c (plain) (blame)
1
2
3
4
5
6
7
8
#include <sys/time.h>

main()
{
  struct timespec ts;

  (void) clock_gettime(CLOCK_REALTIME, &ts);
}