Fix to build on HPUX with the HP C compiler which doesn't define __unix
This commit is contained in:
parent
b125da77cc
commit
ed6e3f75d2
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@
|
|||
#define INVALID_HANDLE INVALID_HANDLE_VALUE
|
||||
#endif /* !defined(INVALID_HANDLE) */
|
||||
|
||||
#elif defined (__unix__) || defined(__APPLE__) /* UNIX definitions */
|
||||
#elif defined (__unix__) || defined (__APPLE__) || defined (__hpux) /* UNIX definitions */
|
||||
|
||||
#include <fcntl.h>
|
||||
#ifdef __hpux
|
||||
|
|
Loading…
Add table
Reference in a new issue