summaryrefslogtreecommitdiff
path: root/compat/sys/eventfd.h
blob: f55d96adb20d3c4dd4bd2f67eb68f84aee9e85bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _COMPAT_SYS_EVENTFD
#define _COMPAT_SYS_EVENTFD

#include <unistd.h>
#include <syscall.h>


static inline int eventfd (int count, int flags)
{
    return syscall(SYS_eventfd, count, flags);
}

#endif