]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/check_eventfd.cpp
Run modulemanager upgrade to check for updates to third party (and extras) modules...
[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 }