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

#include <sys/time.h>

int main (void)
{
  struct itimerval blah ;
  if (getitimer(ITIMER_REAL, &blah) < 0) return 111 ;
  return 0 ;
}