From 832c1a972d0734419127a69b0dc187cdb1934bfe Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 24 Sep 1992 01:30:06 +0000 Subject: [PATCH] Add conditionalization that works with ANSI cpp when `unix' isn't defined. --- v7/src/microcode/oscond.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/v7/src/microcode/oscond.h b/v7/src/microcode/oscond.h index 038307fb8..f9243ddce 100644 --- a/v7/src/microcode/oscond.h +++ b/v7/src/microcode/oscond.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/oscond.h,v 1.11 1992/07/30 15:04:07 jinx Exp $ +$Id: oscond.h,v 1.12 1992/09/24 01:30:06 cph Exp $ Copyright (c) 1990-1992 Massachusetts Institute of Technology @@ -163,6 +163,9 @@ MIT in each case. */ #if defined(_BSD) || defined(_SYSV) || defined(_PIXEL) # define _UNIX +# ifndef unix +# define unix +# endif #else # ifdef _DOS386 # define _DOS -- 2.25.1