Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"

This commit is contained in:
curt
1998-04-24 00:43:12 +00:00
parent 712bbc9085
commit 1fcb70e553
2 changed files with 11 additions and 4 deletions
+3 -1
View File
@@ -6,7 +6,9 @@
* -------------------------------------------------------------------------*/ * -------------------------------------------------------------------------*/
#include <config.h> #ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef WIN32 #ifdef WIN32
# include <memory.h> /* required for memset() and memcpy() */ # include <memory.h> /* required for memset() and memcpy() */
+8 -3
View File
@@ -24,7 +24,9 @@
**************************************************************************/ **************************************************************************/
#include <config.h> #ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> /* for random(), srandom() */ #include <stdlib.h> /* for random(), srandom() */
@@ -73,9 +75,12 @@ double fg_random(void) {
/* $Log$ /* $Log$
/* Revision 1.6 1998/04/18 03:53:42 curt /* Revision 1.7 1998/04/24 00:43:13 curt
/* Miscellaneous Tweaks. /* Wrapped "#include <config.h>" 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 * Revision 1.5 1998/04/03 22:10:29 curt
* Converting to Gnu autoconf system. * Converting to Gnu autoconf system.
* *