1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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_ */