summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/util/StdInt.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/util/StdInt.hpp b/include/util/StdInt.hpp
new file mode 100644
index 0000000..1f999a4
--- /dev/null
+++ b/include/util/StdInt.hpp
@@ -0,0 +1,10 @@
+#ifndef __UTIL_STDINT_H
+#define __UTIL_STDINT_H
+
+#ifdef _WIN32
+#include "util/msinttypes/stdint.h"
+#else
+#include <stdint.h>
+#endif
+
+#endif