diff options
Diffstat (limited to 'src/include/port/solaris.h')
-rw-r--r-- | src/include/port/solaris.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/src/include/port/solaris.h b/src/include/port/solaris.h index e13af401e36..3fd0fdbbdc0 100644 --- a/src/include/port/solaris.h +++ b/src/include/port/solaris.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/include/port/solaris.h,v 1.15 2007/01/10 18:22:50 tgl Exp $ */ +/* $PostgreSQL: pgsql/src/include/port/solaris.h,v 1.16 2007/04/06 05:36:51 tgl Exp $ */ /* * Sort this out for all operating systems some time. The __xxx @@ -25,28 +25,6 @@ #include <sys/isa_defs.h> #endif -#ifndef BIG_ENDIAN -#define BIG_ENDIAN 4321 -#endif -#ifndef LITTLE_ENDIAN -#define LITTLE_ENDIAN 1234 -#endif -#ifndef PDP_ENDIAN -#define PDP_ENDIAN 3412 -#endif - -#ifndef BYTE_ORDER -#ifdef __sparc__ -#define BYTE_ORDER BIG_ENDIAN -#endif -#ifdef __i386__ -#define BYTE_ORDER LITTLE_ENDIAN -#endif -#if defined(__amd64___) || defined(__x86_64__) -#define BYTE_ORDER LITTLE_ENDIAN -#endif -#endif - /* * Many versions of Solaris have broken strtod() --- see bug #4751182. * This has been fixed in current versions of Solaris: |