Add <unistd.h> for non-windows systems

This commit is contained in:
Freddie Akeroyd
2021-02-23 17:15:27 +00:00
parent e36ee60ba7
commit cf7e7bd6ee

View File

@ -24,6 +24,8 @@
#ifdef _WIN32
#include <windows.h>
#include <io.h>
#else
#include <unistd.h>
#endif /* _WIN32 */
#include <string.h>
#include <time.h>