mirror of
https://github.com/simh/simh.git
synced 2026-02-27 01:00:07 +00:00
Fix to build on HPUX with the HP C compiler which doesn't define __unix
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user