Add macro to protect against multiple inclusion.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 30 Aug 1993 16:11:01 +0000 (16:11 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 30 Aug 1993 16:11:01 +0000 (16:11 +0000)
v7/src/microcode/scheme.h

index cc3b479f371a92be4d14d249e50308b2261f43cd..ad66ea3ef96f0008b04e77001930dd9bd97354de 100644 (file)
@@ -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 */