1#include "tests.h"
2#include <asm/unistd.h>
3
4#ifdef __NR_epoll_create
5
6# include <stdio.h>
7# include <unistd.h>
8
9int
10main(void)
11{
12	const long int size = (long int) 0xdeadbeefffffffffULL;
13
14	long rc = syscall(__NR_epoll_create, size);
15	printf("epoll_create(%d) = %ld %s (%m)\n",
16	       (int) size, rc, errno2name());
17
18	puts("+++ exited with 0 +++");
19	return 0;
20}
21
22#else
23
24SKIP_MAIN_UNDEFINED("__NR_epoll_creat")
25
26#endif
27