summaryrefslogtreecommitdiffstats
path: root/win/tclWinPort.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-10-29 12:47:45 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-10-29 12:47:45 (GMT)
commit24a5107484c12a34a855d444aa9b8e26b4ec252a (patch)
tree1343f9569eed103fcc365fba7736b329a1949966 /win/tclWinPort.h
parent75fd364ccf966e5c574757d6c67adfc33aafe418 (diff)
downloadtcl-24a5107484c12a34a855d444aa9b8e26b4ec252a.zip
tcl-24a5107484c12a34a855d444aa9b8e26b4ec252a.tar.gz
tcl-24a5107484c12a34a855d444aa9b8e26b4ec252a.tar.bz2
On Windows, use <stdint.h> header-file if available.
Diffstat (limited to 'win/tclWinPort.h')
-rw-r--r--win/tclWinPort.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h
index 35f183c..1946adb 100644
--- a/win/tclWinPort.h
+++ b/win/tclWinPort.h
@@ -84,6 +84,9 @@ typedef DWORD_PTR * PDWORD_PTR;
#include <process.h>
#include <signal.h>
#include <limits.h>
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
#ifndef __GNUC__
# define strncasecmp _strnicmp