summaryrefslogtreecommitdiff
path: root/src/sysdeps/tryclockrt.c
blob: 8070114d5d8767b994b7ab56dca6aebea0574d66 (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_REALTIME, &ts) < 0) return 111 ;
  return 0 ;
}