Merge pull request #1500 from lwhsu/unistd

Include unistd.h on unix platforms for explicit function declaration
dev
Yann Collet 2019-01-16 06:21:58 -08:00 committed by GitHub
commit ae087ec4bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

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