cb39a7bab7b4d8e871c08c6871c8105b2af59209
[musl] / src / linux / eventfd.c
1 #include <sys/eventfd.h>
2 #include "syscall.h"
3
4 int eventfd(unsigned int count, int flags)
5 {
6         return syscall(flags ? SYS_eventfd2 : SYS_eventfd, count, flags);
7 }