summaryrefslogtreecommitdiff
path: root/src/sysdeps/trytimer.c
blob: 84cea0ddf459a8bd872ab94ed17e7bfa463febe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ISC license. */

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

int main (void)
{
  timer_t blah ;
  if (timer_create(CLOCK_REALTIME, 0, &blah) < 0) return 111 ;
  return 0 ;
}