aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdeps/trykqueue1.c
blob: 95f1d29139ac18f10e26395f905017e00a63d62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ISC license. */

#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE

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

int main (void)
{
  int q = kqueue1(O_CLOEXEC) ;
  return 0 ;
}