1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
18 lines
319 B
C
18 lines
319 B
C
#ifndef __MACHINE_ENDIAN_H__
|
|
|
|
/* TODO: Forcing little endian, if you need a big endian system, fix this { */
|
|
#ifndef BIG_ENDIAN
|
|
#define BIG_ENDIAN 4321
|
|
#endif
|
|
|
|
#ifndef LITTLE_ENDIAN
|
|
#define LITTLE_ENDIAN 1234
|
|
#endif
|
|
|
|
#ifndef BYTE_ORDER
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
#endif
|
|
/* } */
|
|
|
|
#endif /* __MACHINE_ENDIAN_H__ */
|