summaryrefslogtreecommitdiffstats
path: root/make/resources/stubs_includes/common/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'make/resources/stubs_includes/common/stddef.h')
-rw-r--r--make/resources/stubs_includes/common/stddef.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/make/resources/stubs_includes/common/stddef.h b/make/resources/stubs_includes/common/stddef.h
new file mode 100644
index 00000000..f6c7207b
--- /dev/null
+++ b/make/resources/stubs_includes/common/stddef.h
@@ -0,0 +1,24 @@
+#ifndef __stddef_h_
+#define __stddef_h_
+
+ /**
+ * Look in the GlueGen.java API documentation for the build-in types (terminal symbols)
+ * definition.
+ *
+ * The following types are build-in:
+ *
+ * __int32
+ * int32_t
+ * uint32_t
+ * __int64
+ * int64_t
+ * uint64_t
+ * ptrdiff_t
+ * size_t
+ */
+
+ #define NULL ((void *)0)
+
+ typedef int wchar_t;
+
+#endif /* __stddef_h_ */