use a more-correct integer type, and silence 64-bit warnings as a bonus
[musl] / src / linux / epoll_create.c
1 #include <sys/epoll.h>
2 #include "syscall.h"
3
4 int epoll_create(int size)
5 {
6         return syscall1(__NR_epoll_create, size);
7 }