summaryrefslogtreecommitdiff
path: root/src/sysdeps/tryclockmon.c
blob: acd18f9830a97768267378a71bd7bf33f11d3565 (plain)
1
2
3
4
5
6
7
8
9
10
/* ISC license. */

#include <time.h>

int main (void)
{
  struct timespec ts ;
  if (clock_gettime(CLOCK_MONOTONIC, &ts) < 0) return 111 ;
  return 0 ;
}