Define HAVE_UNISTD_H on Darwin/macOS: Fixes a compiler failure due to missing function prototype.

This commit is contained in:
C.W. Betts 2021-05-19 16:19:31 -06:00
commit 04e4a14edc
3 changed files with 6 additions and 0 deletions

View file

@ -80,6 +80,10 @@ typedef char *SLIRPcaddr_t;
# include <stdint.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifndef _MSC_VER
#include <sys/time.h>
#else