summaryrefslogtreecommitdiff
path: root/bzrlib/_dirstate_helpers_pyx.h
diff options
context:
space:
mode:
Diffstat (limited to 'bzrlib/_dirstate_helpers_pyx.h')
-rw-r--r--bzrlib/_dirstate_helpers_pyx.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/bzrlib/_dirstate_helpers_pyx.h b/bzrlib/_dirstate_helpers_pyx.h
new file mode 100644
index 0000000..e12a036
--- /dev/null
+++ b/bzrlib/_dirstate_helpers_pyx.h
@@ -0,0 +1,17 @@
+#ifndef _DIRSTATE_HELPERS_PYX_H
+#define _DIRSTATE_HELPERS_PYX_H
+
+/* for intptr_t */
+#ifdef _MSC_VER
+#include <io.h>
+#else
+
+#if defined(__SVR4) && defined(__sun)
+#include <inttypes.h>
+#else
+#include <stdint.h>
+#endif
+
+#endif
+
+#endif