mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
pico.v and dependencies
This commit is contained in:
parent
5c6032d272
commit
7b345e207d
19 changed files with 2475 additions and 0 deletions
9
thirdparty/picoev/picoev.c
vendored
Normal file
9
thirdparty/picoev/picoev.c
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue