summaryrefslogtreecommitdiff
path: root/localedef/include/endian.h
blob: d21a9e6240773476960f97568772eb357a271d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef HAVE_ENDIAN_H
#include_next <endian.h>
#endif

#ifndef __LITTLE_ENDIAN
#define __LITTLE_ENDIAN 1234
#endif

#ifndef __BIG_ENDIAN
#define __BIG_ENDIAN 4321
#endif

#ifndef __BYTE_ORDER
#define __BYTE_ORDER BUILD_BYTE_ORDER
#endif