1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-25 03:55:16 +00:00

Changes necessary to compile for OS5 (Solaris 10/11) when -DSYSVONLY is removed from the compilation flags.

modified:   src/dsk.c
	modified:   src/ldeether.c
	modified:   src/main.c
	modified:   src/timer.c
	modified:   src/ufs.c
	modified:   src/unixfork.c
	modified:   src/vmemsave.c
	modified:   src/xrdopt.c
This commit is contained in:
Nick Briggs
2020-07-14 20:05:32 -07:00
parent 55e39453f5
commit 9fc2752790
8 changed files with 28 additions and 22 deletions

View File

@@ -44,7 +44,7 @@ static char *id = "$Id: vmemsave.c,v 1.2 1999/01/03 02:07:45 sybalsky Exp $ Copy
#include <signal.h>
#include <setjmp.h>
#if defined(SYSVONLY) || defined(MACOSX) || defined(FREEBSD)
#if defined(SYSVONLY) || defined(MACOSX) || defined(FREEBSD) || defined(OS5)
#include <sys/fcntl.h>
#include <dirent.h>
#include <unistd.h>