]> git.ozlabs.org Git - ccan/commitdiff
endian: Add Glibc like endianess check
authorAkshay Adiga <akshay.adiga@linux.vnet.ibm.com>
Tue, 12 Sep 2017 05:23:13 +0000 (10:53 +0530)
committerRusty Russell <rusty@rustcorp.com.au>
Tue, 12 Sep 2017 11:01:45 +0000 (20:31 +0930)
An application built using glibc would expect __BYTE_ORDER to tell if
it should be compiled for BIG_ENDIAN or LITTLE_ENDIAN, whereas ccan uses
HAVE_LITTLE_ENDIAN and HAVE_BIG_ENDIAN for the same purpose.

Hence setting __BYTE_ORDER based on what CCAN provides will no longer
break the applications which check endianness the glibc way.

Signed-off-by: Akshay Adiga <akshay.adiga@linux.vnet.ibm.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

No differences found