Current required packages for Debian/Ubuntu
[rofl0r-conpix.git] / Endianness.h
bloba477d6c486c6497e64694ab3b76872b479044441
1 /*
2 * Endianness.h
4 * Created on: 29.11.2010
5 * Author: rofl
6 */
8 #ifndef ENDIANNESS_H_
9 #define ENDIANNESS_H_
11 #ifdef __linux
12 #include <endian.h>
13 #else
14 #include <machine/endian.h>
15 #endif
17 //#include <stdint.h>
18 //#define IS_BIG_ENDIAN (*(uint16_t *)"\0\xff" < 0x100)
20 #if __BYTE_ORDER == __LITTLE_ENDIAN
21 #define IS_LITTLE_ENDIAN
22 #endif
24 #endif /* ENDIANNESS_H_ */