1 // This is an incomplete & imprecice implementation of the 2 // standard file by the same name 3 4 5 // Since this is only intended for VC++ compilers 6 // use #pragma once instead of guard macros 7 #pragma once 8 9 #ifdef _MSC_VER // Only for cross compilation to windows 10 11 #define __LITTLE_ENDIAN 1234 12 #define __BIG_ENDIAN 4321 13 14 #define __BYTE_ORDER __LITTLE_ENDIAN 15 16 #endif // _MSC_VER 17