1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/thirdparty/picoev/picoev.c

10 lines
273 B
C
Raw Normal View History

2020-01-23 05:26:30 +03:00
#ifdef __linux__
#include "src/picoev_epoll.c"
#elif __APPLE__
#include "src/picoev_kqueue.c"
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
#include "src/picoev_kqueue.c"
#else
#include "src/picoev_select.c"
#endif