diff options
Diffstat (limited to 'generic/tkScale.c')
-rw-r--r-- | generic/tkScale.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/generic/tkScale.c b/generic/tkScale.c index 7026821..2d6502d 100644 --- a/generic/tkScale.c +++ b/generic/tkScale.c @@ -21,15 +21,10 @@ #include "tkInt.h" #include "tkScale.h" -#ifdef _MSC_VER -/* - * Earlier versions of MSVC don't know snprintf, but _snprintf is compatible. - * Note that sprintf is deprecated. - */ -# define snprintf _snprintf +#ifdef _WIN32 +#include "tkWinInt.h" #endif - /* * The following table defines the legal values for the -orient option. It is * used together with the "enum orient" declaration in tkScale.h. |