summaryrefslogtreecommitdiffstats
path: root/make/stub_includes/platform/gluegen_stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'make/stub_includes/platform/gluegen_stddef.h')
-rw-r--r--make/stub_includes/platform/gluegen_stddef.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/make/stub_includes/platform/gluegen_stddef.h b/make/stub_includes/platform/gluegen_stddef.h
new file mode 100644
index 0000000..acd9dbd
--- /dev/null
+++ b/make/stub_includes/platform/gluegen_stddef.h
@@ -0,0 +1,25 @@
+#ifndef __gluegen_stddef_h
+#define __gluegen_stddef_h
+
+#ifdef __GLUEGEN__
+ #error "This file is not intended to be used for GlueGen code generation, use the gluegen/make/stub_includes/gluegen variation instead!"
+#endif
+
+#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__)
+ #include <stddef.h>
+#elif defined(WIN32) && defined(__GNUC__)
+ #include <stddef.h>
+#elif defined(_WIN64)
+ typedef __int64 ptrdiff_t;
+ typedef unsigned long int size_t;
+#elif defined(__ia64__) || defined(__x86_64__)
+ typedef long int ptrdiff_t;
+#else
+ typedef int ptrdiff_t;
+#endif
+
+#ifndef NULL
+ #define NULL ((void *)0)
+#endif
+
+#endif /* __gluegen_stddef_h */