mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
fix(termkey): include IO header on Windows
This commit is contained in:
parent
5999214c24
commit
50f5864dd2
@ -21,6 +21,8 @@
|
||||
#include <string.h>
|
||||
#ifndef _WIN32
|
||||
# include <unistd.h>
|
||||
#else
|
||||
# include <io.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
|
@ -7,6 +7,8 @@
|
||||
# include <poll.h>
|
||||
# include <unistd.h>
|
||||
# include <strings.h>
|
||||
#else
|
||||
# include <io.h>
|
||||
#endif
|
||||
#include <string.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user