From: curt Date: Fri, 24 Apr 1998 00:43:12 +0000 (+0000) Subject: Wrapped "#include " in "#ifdef HAVE_CONFIG_H" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1fcb70e553e8a104285558cf917d1ec6dfdcfa3f;p=simgear.git Wrapped "#include " in "#ifdef HAVE_CONFIG_H" --- diff --git a/Math/MAT3mat.c b/Math/MAT3mat.c index fe4f3ba4..7b1a24c2 100644 --- a/Math/MAT3mat.c +++ b/Math/MAT3mat.c @@ -6,7 +6,9 @@ * -------------------------------------------------------------------------*/ -#include +#ifdef HAVE_CONFIG_H +# include +#endif #ifdef WIN32 # include /* required for memset() and memcpy() */ diff --git a/Math/fg_random.c b/Math/fg_random.c index 7958c3d6..465d8923 100644 --- a/Math/fg_random.c +++ b/Math/fg_random.c @@ -24,7 +24,9 @@ **************************************************************************/ -#include +#ifdef HAVE_CONFIG_H +# include +#endif #include #include /* for random(), srandom() */ @@ -73,9 +75,12 @@ double fg_random(void) { /* $Log$ -/* Revision 1.6 1998/04/18 03:53:42 curt -/* Miscellaneous Tweaks. +/* Revision 1.7 1998/04/24 00:43:13 curt +/* Wrapped "#include " in "#ifdef HAVE_CONFIG_H" /* + * Revision 1.6 1998/04/18 03:53:42 curt + * Miscellaneous Tweaks. + * * Revision 1.5 1998/04/03 22:10:29 curt * Converting to Gnu autoconf system. *