diff options
Diffstat (limited to 'byterun/intext.h')
-rw-r--r-- | byterun/intext.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/byterun/intext.h b/byterun/intext.h index 7b1a26c41..501bed6a4 100644 --- a/byterun/intext.h +++ b/byterun/intext.h @@ -34,6 +34,13 @@ #else #define CODE_DOUBLE_NATIVE CODE_DOUBLE_LITTLE #endif +#define CODE_DOUBLE_ARRAY_BIG 0xD +#define CODE_DOUBLE_ARRAY_LITTLE 0xE +#ifdef BIG_ENDIAN +#define CODE_DOUBLE_ARRAY_NATIVE CODE_DOUBLE_ARRAY_BIG +#else +#define CODE_DOUBLE_ARRAY_NATIVE CODE_DOUBLE_ARRAY_LITTLE +#endif /* Initial sizes of data structures for extern */ |