summaryrefslogtreecommitdiffstats
path: root/generic/tclFCmd.c
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2014-02-10 11:59:22 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2014-02-10 11:59:22 (GMT)
commitf39208fdd2ca0e4725df3049c3b103776aa5bcea (patch)
tree6f2f0f51d80e979e3932cee061ad494923143215 /generic/tclFCmd.c
parentf1579f615c015aa9bf59947064c2da91fb71ef1d (diff)
downloadtcl-f39208fdd2ca0e4725df3049c3b103776aa5bcea.zip
tcl-f39208fdd2ca0e4725df3049c3b103776aa5bcea.tar.gz
tcl-f39208fdd2ca0e4725df3049c3b103776aa5bcea.tar.bz2
Eliminate all usage of WIN32 and __WIN32__ macros: Some compilers (e.g. Clang/LLVM) don't define it, and _WIN32 is much more portable anyway.
See: [http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system#WindowsCygwinnonPOSIXandMinGW] FossilOrigin-Name: 80cf092cc7b1b5761346f83ceb291580270caebe
Diffstat (limited to 'generic/tclFCmd.c')
-rw-r--r--generic/tclFCmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c
index 13377d3..6452fff 100644
--- a/generic/tclFCmd.c
+++ b/generic/tclFCmd.c
@@ -517,7 +517,7 @@ CopyRenameOneFile(
* 16 bits and we get collisions. See bug #2015723.
*/
-#if !defined(WIN32) && !defined(__CYGWIN__)
+#if !defined(_WIN32) && !defined(__CYGWIN__)
if ((sourceStatBuf.st_ino != 0) && (targetStatBuf.st_ino != 0)) {
if ((sourceStatBuf.st_ino == targetStatBuf.st_ino) &&
(sourceStatBuf.st_dev == targetStatBuf.st_dev)) {