summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorFrances Buontempo <frances.buontempo@gmail.com>2012-01-03 16:45:16 (GMT)
committerFrances Buontempo <frances.buontempo@gmail.com>2012-01-03 16:45:16 (GMT)
commitd7dbe1ac84658bd2b1b1d5cf38823a22a317f18b (patch)
treecfc859495d86745cd8546bb771625f0eb35cd69e /src/util.h
parent7d600a4e12b2aa2ecdc2a801f680049e3b17d62a (diff)
downloadNinja-d7dbe1ac84658bd2b1b1d5cf38823a22a317f18b.zip
Ninja-d7dbe1ac84658bd2b1b1d5cf38823a22a317f18b.tar.gz
Ninja-d7dbe1ac84658bd2b1b1d5cf38823a22a317f18b.tar.bz2
typedef long long for MSVC
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index f6601d3..58e0b85 100644
--- a/src/util.h
+++ b/src/util.h
@@ -16,7 +16,11 @@
#define NINJA_UTIL_H_
#pragma once
+#ifdef WIN32
+#include "win32port.h"
+#else
#include <stdint.h>
+#endif
#include <string>
using namespace std;