From: Guillermo J. Rozas Date: Mon, 30 Aug 1993 16:11:01 +0000 (+0000) Subject: Add macro to protect against multiple inclusion. X-Git-Tag: 20090517-FFI~7961 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ef6bd5dadb8ba946c4460a561095fa0d0425d8be;p=mit-scheme.git Add macro to protect against multiple inclusion. --- 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 */