Include unistd.h on unix platforms for explicit function declaration

This commit is contained in:
Li-Wen Hsu 2019-01-16 04:55:43 +08:00
parent f8745ae095
commit 6ff9d5e881

View File

@ -38,6 +38,8 @@
#ifdef _WIN32
# include <stddef.h>
#else
# include <unistd.h>
#endif
#if defined(__TURBOC__) || defined(_MSC_VER) || defined(_WIN32)