Apparently HPUX runs the IA64 in big-endian mode.

This commit is contained in:
Tom Lane 2004-09-02 21:03:30 +00:00
parent 3475fd1178
commit cb79234307
1 changed files with 2 additions and 1 deletions

View File

@ -16,8 +16,9 @@
#elif defined(__ia64)
/* HPUX runs IA64 in big-endian mode */
#ifndef BYTE_ORDER
#define BYTE_ORDER LITTLE_ENDIAN
#define BYTE_ORDER BIG_ENDIAN
#endif
#else