aboutsummaryrefslogtreecommitdiff
path: root/src/common/mac/include/features.h
blob: 2020c482c427897562d6fc008a18d8d02968346d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This file is included by third_party/glibc/elf/elf.h
// We use it to map a couple of glibc specific macros
// over to their OS X equivalents.


// Map GNU endianness macros over to OS X endianness macros.

#ifndef __LITTLE_ENDIAN
  #define __LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
#endif
#ifndef __BIG_ENDIAN
  #define __BIG_ENDIAN __ORDER_BIG_ENDIAN__
#endif
#ifndef __BYTE_ORDER
  #define __BYTE_ORDER __BYTE_ORDER__
#endif