e2f537ef59
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@3912 127b21dd-08f5-0310-b4b7-95ae10353056
21 lines
407 B
C
21 lines
407 B
C
#ifndef js_cpucfg___
|
|
#define js_cpucfg___
|
|
|
|
/* MANUALLY GENERATED - DO EDIT. IF YOU ACTUALLY NEED TO. */
|
|
|
|
#if __LITTLE_ENDIAN__
|
|
#define IS_LITTLE_ENDIAN 1
|
|
#undef IS_BIG_ENDIAN
|
|
#elif __BIG_ENDIAN__
|
|
#define IS_BIG_ENDIAN 1
|
|
#undef IS_LITTLE_ENDIAN
|
|
#else
|
|
#error Unknown platform endianness.
|
|
#undef IS_BIG_ENDIAN
|
|
#undef IS_LITTLE_ENDIAN
|
|
#endif
|
|
|
|
#define JS_STACK_GROWTH_DIRECTION (-1)
|
|
|
|
#endif // js_cpucfg___
|