fix missing header for Windows

This commit is contained in:
2020-04-14 17:22:51 +02:00
parent 4b05a37e2f
commit 78ec34f299
+3 -1
View File
@@ -18,7 +18,9 @@
#include <string.h>
#include <errno.h>
#if !defined (_WIN32)
#if defined (_WIN32)
#include <io.h>
#else
#include <unistd.h>
#endif