diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-15 20:45:42 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-15 20:45:42 (GMT) |
commit | 995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6 (patch) | |
tree | e35abbe984c2b2295018ad4c7aabefeb4d45dcd8 /xlib | |
parent | 54072496349622a788dad28bc5ab9c9df88084c0 (diff) | |
download | tk-995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6.zip tk-995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6.tar.gz tk-995953339ac39e45eb6f5fa4dce37a6f0d5e3bf6.tar.bz2 |
workaround for _strtoi64 determination on win64 (autoconf-2.13 issue)
Diffstat (limited to 'xlib')
-rw-r--r-- | xlib/xcolors.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xlib/xcolors.c b/xlib/xcolors.c index 224d38e..3a48faa 100644 --- a/xlib/xcolors.c +++ b/xlib/xcolors.c @@ -11,7 +11,6 @@ */ #include "tkInt.h" -#include <stdlib.h> /* * Forward declarations for functions used only in this file. @@ -855,7 +854,6 @@ FindColor( #ifdef __WIN32__ # ifdef NO_STRTOI64 /* This version only handles hex-strings without 0x prefix */ -#define _strtoi64 something_out_of_the_way /* workaround for win64 problem ??? */ static __int64 _strtoi64(const char *spec, char **p, int base) { |