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

#include <sys/types.h>
#include <time.h>

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