summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2020-10-08 20:47:29 (GMT)
committerdgp <dgp@users.sourceforge.net>2020-10-08 20:47:29 (GMT)
commit359461f326619fe25c3ab4f3dc1481a93a667b24 (patch)
tree64728efde78aa54cc2dda26b346440d4a936d70b /win
parent5ef16060be5c925a3b494e1f9acf5847554385c3 (diff)
parent4a3369807be6e501ec6452edf99a73514c24d861 (diff)
downloadtcl-359461f326619fe25c3ab4f3dc1481a93a667b24.zip
tcl-359461f326619fe25c3ab4f3dc1481a93a667b24.tar.gz
tcl-359461f326619fe25c3ab4f3dc1481a93a667b24.tar.bz2
merge 8.6
Diffstat (limited to 'win')
-rw-r--r--win/tclWinPort.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h
index 3d61a39..8641e5e 100644
--- a/win/tclWinPort.h
+++ b/win/tclWinPort.h
@@ -297,7 +297,7 @@ typedef DWORD_PTR * PDWORD_PTR;
* defined in header files above.
*/
-#if TCL_UNION_WAIT
+#ifdef TCL_UNION_WAIT
# define WAIT_STATUS_TYPE union wait
#else
# define WAIT_STATUS_TYPE int
@@ -439,10 +439,10 @@ typedef DWORD_PTR * PDWORD_PTR;
* Define pid_t and uid_t if they're not already defined.
*/
-#if ! TCL_PID_T
+#if !defined(TCL_PID_T)
# define pid_t int
#endif /* !TCL_PID_T */
-#if ! TCL_UID_T
+#if !defined(TCL_UID_T)
# define uid_t int
#endif /* !TCL_UID_T */