diff options
Diffstat (limited to 'src/linux/epoll.c')
-rw-r--r-- | src/linux/epoll.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/epoll.c b/src/linux/epoll.c index e56e8f4c..75973847 100644 --- a/src/linux/epoll.c +++ b/src/linux/epoll.c @@ -36,3 +36,11 @@ int epoll_wait(int fd, struct epoll_event *ev, int cnt, int to) { return epoll_pwait(fd, ev, cnt, to, 0); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |