Since COMPILE_FOR_STATIC_LINKING is now defined in "config.h",
authorChris Hanson <org/chris-hanson/cph>
Fri, 12 Jan 2007 06:27:29 +0000 (06:27 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 12 Jan 2007 06:27:29 +0000 (06:27 +0000)
all references must be moved after that #include.

v7/src/microcode/liarc.h

index 8b46aee9a443ce34af6116efeaa17d005be7d211..b921a39e2d7f3a848ac13ca2f0875860d6589f9c 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: liarc.h,v 1.26 2007/01/12 06:17:27 cph Exp $
+$Id: liarc.h,v 1.27 2007/01/12 06:27:29 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -28,12 +28,6 @@ USA.
 #ifndef LIARC_INCLUDED
 #define LIARC_INCLUDED
 
-#ifndef COMPILE_FOR_STATIC_LINKING
-#ifndef COMPILE_FOR_DYNAMIC_LOADING
-#define COMPILE_FOR_DYNAMIC_LOADING
-#endif
-#endif
-
 #ifndef MIT_SCHEME
 #define MIT_SCHEME
 #endif
@@ -62,6 +56,12 @@ USA.
 #  include <varargs.h>
 #endif /* __STDC__ */
 
+#ifndef COMPILE_FOR_STATIC_LINKING
+#ifndef COMPILE_FOR_DYNAMIC_LOADING
+#define COMPILE_FOR_DYNAMIC_LOADING
+#endif
+#endif
+
 #ifdef __GNUC__
 /* Add attributes to avoid warnings from -Wall for unreferenced labels */
 #  define DEFLABEL(name) name : __attribute__((unused))