]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/check_eventfd.cpp
If you're going to add magical number hacks, please comment them appropriately to...
[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 }