mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-22 14:27:00 +08:00
19 lines
366 B
C
19 lines
366 B
C
#include "libc.h"
|
|
#include <sys/ioctl.h>
|
|
#if defined(__STRICT_ANSI__)
|
|
#define isascii(c) ((unsigned)(c)<=0177)
|
|
#endif
|
|
extern char *strdup(const char *string);
|
|
|
|
#ifndef _POSIX_SOURCE
|
|
typedef unsigned short mode_t;
|
|
typedef int sigset_t;
|
|
|
|
#define SIG_BLOCK 00
|
|
#define SIG_UNBLOCK 01
|
|
#define SIG_SETMASK 02
|
|
#endif
|
|
|
|
#define NO_WAITPID
|
|
typedef struct mutex slock_t;
|