summaryrefslogtreecommitdiffstats
path: root/src/timestamp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/timestamp.h')
-rw-r--r--src/timestamp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/timestamp.h b/src/timestamp.h
index 58ae148..5565154 100644
--- a/src/timestamp.h
+++ b/src/timestamp.h
@@ -15,6 +15,12 @@
#ifndef NINJA_TIMESTAMP_H_
#define NINJA_TIMESTAMP_H_
+#ifdef _WIN32
+#include "win32port.h"
+#else
+#include <inttypes.h>
+#endif
+
// When considering file modification times we only care to compare
// them against one another -- we never convert them to an absolute
// real time. On POSIX we use timespec (seconds&nanoseconds since epoch)