]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/check_eventfd.cpp
Move file inclusion logic into calcdep, and complain about ambiguous #include directi...
[user/henk/code/inspircd.git] / make / check_eventfd.cpp
1 #include <sys/eventfd.h>
2
3 int main() {
4         int fd = eventfd(0, 0);
5         return (fd < 0);
6 }