diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-04-07 14:02:04 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-04-07 14:02:04 -0700 |
commit | b3c27e56063a3357869266bf4a836b67859a927e (patch) | |
tree | ac850f782332815186ce7479b627898be2144a90 /lib.c | |
parent | e5d0cc1c9f409827de95c9aeede8b4ae0c014d2c (diff) | |
download | txr-b3c27e56063a3357869266bf4a836b67859a927e.tar.gz txr-b3c27e56063a3357869266bf4a836b67859a927e.tar.bz2 txr-b3c27e56063a3357869266bf4a836b67859a927e.zip |
* configure: Added new check for some clashing external names,
which we can redefine out of the way in config.h.
* lib.c: config.h was being included before <windows.h>.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,11 +36,11 @@ #include <errno.h> #include <wchar.h> #include <math.h> -#include "config.h" #ifdef HAVE_GETENVIRONMENTSTRINGS #define NOMINMAX #include <windows.h> #endif +#include "config.h" #include "lib.h" #include "gc.h" #include "arith.h" |