mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
20 lines
387 B
C
20 lines
387 B
C
# define USE_POSIX_TIME
|
|
# define NO_EMPTY_STMTS
|
|
# define USE_POSIX_SIGNALS
|
|
# define SYSV_DIRENT
|
|
|
|
#if 0
|
|
# define HAS_TEST_AND_SET
|
|
typedef unsigned char slock_t;
|
|
#endif
|
|
|
|
extern long random(void);
|
|
extern void srandom(int seed);
|
|
extern int strcasecmp(char *s1,char *s2);
|
|
extern int gethostname(char *name,int namelen);
|
|
|
|
#ifndef BYTE_ORDER
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
#endif
|
|
|