#ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include int main(void) { #ifdef __NR_eventfd2 (void) close(0); return syscall(__NR_eventfd2, -1L, 1 | O_CLOEXEC | O_NONBLOCK) == 0 ? 0 : 77; #else return 77; #endif }