]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/check_epoll.cpp
Add test-compile checks for epoll and eventfd
[user/henk/code/inspircd.git] / make / check_epoll.cpp
1 #include <sys/epoll.h>
2
3 int main() {
4         int fd = epoll_create(1);
5         return (fd < 0);
6 }