1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 10:26:37 +02:00
Files
anope/cmake/eventfd_test.cpp
T

9 lines
100 B
C++

#include <sys/eventfd.h>
int main()
{
int i = eventfd(0, EFD_NONBLOCK);
return i > 0 ? 1 : 0;
}