summaryrefslogtreecommitdiff
path: root/make/check_epoll.cpp
blob: 626d4475c8fd81aa6ce13e416bbc01d8e227da8c (plain)
1
2
3
4
5
6
#include <sys/epoll.h>

int main() {
	int fd = epoll_create(1);
	return (fd < 0);
}