From 6e2c1aa4ae61ae785105f04fecefce0432fe43dd Mon Sep 17 00:00:00 2001 From: Nick Papadakis Date: Mon, 22 Feb 1993 20:35:53 +0000 Subject: [PATCH] Fixed bug with scmsig/scm6003 involving image.o Somehow, #ifndef for REAL_IS_DEFINED_DOUBLE managed to vanish ... --- v7/src/microcode/array.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/array.h b/v7/src/microcode/array.h index b017c7fa9..2233a70e9 100644 --- a/v7/src/microcode/array.h +++ b/v7/src/microcode/array.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/array.h,v 9.33 1992/12/03 22:03:07 nick Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/array.h,v 9.34 1993/02/22 20:35:53 nick Exp $ Copyright (c) 1987-91 Massachusetts Institute of Technology @@ -32,7 +32,9 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -#define REAL_IS_DEFINED_DOUBLE 1 +#ifndef REAL_IS_DEFINED_DOUBLE +#define REAL_IS_DEFINED_DOUBLE 0 +#endif #if (REAL_IS_DEFINED_DOUBLE == 0) #define REAL float -- 2.25.1