mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
7 lines
95 B
C++
7 lines
95 B
C++
#include <sys/eventfd.h>
|
|
|
|
int main() {
|
|
int fd = eventfd(0, EFD_NONBLOCK);
|
|
return (fd < 0);
|
|
}
|