aboutsummaryrefslogtreecommitdiffstats
path: root/make/joal-common-CustomCCode.c
diff options
context:
space:
mode:
Diffstat (limited to 'make/joal-common-CustomCCode.c')
-rwxr-xr-xmake/joal-common-CustomCCode.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/make/joal-common-CustomCCode.c b/make/joal-common-CustomCCode.c
new file mode 100755
index 0000000..f749723
--- /dev/null
+++ b/make/joal-common-CustomCCode.c
@@ -0,0 +1,9 @@
+#ifdef _MSC_VER /* Windows, Microsoft compilers */
+/* This typedef is only needed for VC6 */
+#if _MSC_VER <= 1200
+typedef int intptr_t;
+#endif
+#else
+/* This header seems to be available on all other platforms */
+#include <inttypes.h>
+#endif