From ef6bd5dadb8ba946c4460a561095fa0d0425d8be Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Mon, 30 Aug 1993 16:11:01 +0000 Subject: [PATCH] Add macro to protect against multiple inclusion. --- v7/src/microcode/scheme.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/v7/src/microcode/scheme.h b/v7/src/microcode/scheme.h index cc3b479f3..ad66ea3ef 100644 --- a/v7/src/microcode/scheme.h +++ b/v7/src/microcode/scheme.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: scheme.h,v 9.35 1993/06/24 06:22:01 gjr Exp $ +$Id: scheme.h,v 9.36 1993/08/30 16:11:01 gjr Exp $ Copyright (c) 1987-1993 Massachusetts Institute of Technology @@ -38,6 +38,9 @@ MIT in each case. */ /* Certain debuggers cannot really deal with variables in registers. When debugging, NO_REGISTERS can be defined. */ +#ifndef SCM_SCHEME_H +#define SCM_SCHEME_H + #ifdef NO_REGISTERS #define fast #else @@ -99,3 +102,4 @@ MIT in each case. */ #include "error: floating point radix not 2! Arithmetic won't work." #endif +#endif /* SCM_SCHEME_H */ -- 2.25.1