musl/src/linux/eventfd.c

8 lines
161 B
C
Raw Normal View History

#include <sys/eventfd.h>
#include "syscall.h"
int eventfd(unsigned int count, int flags)
{
return syscall(flags ? SYS_eventfd2 : SYS_eventfd, count, flags);
}