1
0
mirror of https://github.com/simh/simh.git synced 2026-04-15 16:11:13 +00:00

Added Large File Support which was missing for NetBSD (and OpenBSD) hosts - reported by Felix Deichmann

This commit is contained in:
Mark Pizzolato
2013-04-12 08:17:01 -07:00
parent 414cf3335f
commit 3dd4121c78
3 changed files with 3 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ int32 sim_finit (void);
#if defined (__linux) || defined (__linux__) || defined (__hpux) || \
(defined (VMS) && (defined (__ALPHA) || defined (__ia64)) && (__DECC_VER >= 60590001)) || \
((defined(__sun) || defined(__sun__)) && defined(_LARGEFILE_SOURCE)) || \
defined (_WIN32) || defined (__APPLE__) || defined (__FreeBSD__)
defined (_WIN32) || defined (__APPLE__) || defined (__FreeBSD__) || defined(__NetBSD__) || defined (__OpenBSD__)
typedef t_int64 t_offset;
#else
typedef int32 t_offset;