1
0
mirror of https://github.com/open-simh/simh.git synced 2026-02-27 01:10:17 +00:00

Fix to build on HPUX with the HP C compiler which doesn't define __unix

This commit is contained in:
Mark Pizzolato
2013-04-03 08:43:21 -07:00
parent b125da77cc
commit ed6e3f75d2

View File

@@ -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