pci: Remove pci_enable_capability_support()
[qemu-kvm/stefanha.git] / compat / sys / eventfd.h
blobf55d96adb20d3c4dd4bd2f67eb68f84aee9e85bd
1 #ifndef _COMPAT_SYS_EVENTFD
2 #define _COMPAT_SYS_EVENTFD
4 #include <unistd.h>
5 #include <syscall.h>
8 static inline int eventfd (int count, int flags)
10 return syscall(SYS_eventfd, count, flags);
13 #endif