summaryrefslogtreecommitdiffstats
path: root/src/win32port.h
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2016-12-31 08:12:51 (GMT)
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2017-09-16 07:54:10 (GMT)
commit5fcdcf95cb62ab3d593c36ef90df27cef63874a1 (patch)
tree734cfe5426f48e5a0e19d5fa00e7bd2827337ee1 /src/win32port.h
parent87111bff382655075f2577c591745a335f0103c7 (diff)
downloadNinja-5fcdcf95cb62ab3d593c36ef90df27cef63874a1.zip
Ninja-5fcdcf95cb62ab3d593c36ef90df27cef63874a1.tar.gz
Ninja-5fcdcf95cb62ab3d593c36ef90df27cef63874a1.tar.bz2
Make TimeStamp 64-bit.
This prepares it for higher-resolution timestamps.
Diffstat (limited to 'src/win32port.h')
-rw-r--r--src/win32port.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/win32port.h b/src/win32port.h
index ce3c949..5464797 100644
--- a/src/win32port.h
+++ b/src/win32port.h
@@ -23,6 +23,7 @@ typedef unsigned long long uint64_t;
// printf format specifier for uint64_t, from C99.
#ifndef PRIu64
+#define PRId64 "I64d"
#define PRIu64 "I64u"
#define PRIx64 "I64x"
#endif