summaryrefslogtreecommitdiff
path: root/bzrlib/_dirstate_helpers_pyx.h
diff options
context:
space:
mode:
authorLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 15:47:16 +0100
committerLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 15:47:16 +0100
commit25335618bf8755ce6b116ee14f47f5a1f2c821e9 (patch)
treed889d7ab3f9f985d0c54c534cb8052bd2e6d7163 /bzrlib/_dirstate_helpers_pyx.h
downloadbzr-tarball-25335618bf8755ce6b116ee14f47f5a1f2c821e9.tar.gz
Tarball conversion
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