postgresql/src/include/port/hpux.h

19 lines
301 B
C
Raw Normal View History

#define HAS_TEST_AND_SET
typedef struct
{
int sema[4];
} slock_t;
1997-07-27 20:52:43 +02:00
#ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321
1997-07-27 20:52:43 +02:00
#endif
#ifndef LITTLE_ENDIAN
#define LITTLE_ENDIAN 1234
1997-07-27 20:52:43 +02:00
#endif
#ifndef PDP_ENDIAN
#define PDP_ENDIAN 3412
1997-07-27 20:52:43 +02:00
#endif
#ifndef BYTE_ORDER
#define BYTE_ORDER BIG_ENDIAN
1997-07-27 20:52:43 +02:00
#endif