1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-29 18:57:56 +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

@@ -511,7 +511,7 @@ extern u_int LispWindowFd;
static struct sigvec timerv;
#endif /* SYSVSIGNALS */
#if (defined(OS4) || defined(SYSVONLY)) || defined(MACOSX) || defined(FREEBSD)
#if (defined(OS4) || defined(SYSVONLY)) || defined(MACOSX) || defined(FREEBSD) || defined(OS5)
void int_timer_service(int sig, int code, struct sigcontext *scp)
#else
int int_timer_service(int sig, int code, struct sigcontext *scp)