mirror of
https://github.com/anope/anope.git
synced 2026-06-25 19:36:38 +02:00
9 lines
101 B
C++
9 lines
101 B
C++
#include <sys/eventfd.h>
|
|
|
|
int main()
|
|
{
|
|
int i = eventfd(0, EFD_NONBLOCK);
|
|
return i >= 0 ? 1 : 0;
|
|
}
|
|
|