summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index e98c59d..0e7e39e 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -321,10 +321,10 @@ typedef unsigned TCL_WIDE_INT_TYPE Tcl_WideUInt;
struct {long long tv_sec;} st_mtim;
struct {long long tv_sec;} st_ctim;
} Tcl_StatBuf;
-#elif defined(HAVE_NO_STRUCT_STAT64)
- typedef struct stat Tcl_StatBuf;
-#else
+#elif defined(HAVE_STRUCT_STAT64)
typedef struct stat64 Tcl_StatBuf;
+#else
+ typedef struct stat Tcl_StatBuf;
#endif
/*