1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-18 07:41:44 +02:00

(__BYTE_ORDER): Fix HP-UX byte-order to be __BIG_ENDIAN, as it was meant

to be.

(Logical change 1.106)
This commit is contained in:
hp.com!davidm 2003-10-11 01:05:18 +00:00
parent b41d75048f
commit 039accfd88

View file

@ -45,7 +45,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
# define __LITTLE_ENDIAN 1234
# define __BIG_ENDIAN 4321
# if defined(__hpux)
# define __BYTE_ORDER __LITTLE_ENDIAN
# define __BYTE_ORDER __BIG_ENDIAN
# else
# error Host has unknown byte-order.
# endif