summaryrefslogtreecommitdiff
path: root/make/check_eventfd.cpp
blob: 9746ed733fb69ed1a1905ea6fd0f79664e9ddc62 (plain)
1
2
3
4
5
6
#include <sys/eventfd.h>

int main() {
	int fd = eventfd(0, 0);
	return (fd < 0);
}