Home | History | Annotate | Line # | Download | only in compat
compat_defs.h revision 1.111
      1  1.111  christos /*	$NetBSD: compat_defs.h,v 1.111 2018/06/12 23:52:56 christos Exp $	*/
      2    1.1   thorpej 
      3    1.1   thorpej #ifndef	__NETBSD_COMPAT_DEFS_H__
      4    1.1   thorpej #define	__NETBSD_COMPAT_DEFS_H__
      5    1.1   thorpej 
      6   1.96       apb /*
      7   1.96       apb  * On NetBSD, ensure that _NETBSD_SOURCE does not get defined, so that
      8   1.96       apb  * accidental attempts to use NetBSD-specific features instead of more
      9   1.96       apb  * portable features is likely to be noticed when the tools are built
     10   1.96       apb  * on NetBSD.  Define enough other feature test macros to expose the
     11   1.96       apb  * features we need.
     12   1.96       apb  */
     13   1.96       apb #ifdef __NetBSD__
     14   1.96       apb #define	_ISOC99_SOURCE
     15   1.96       apb #define _POSIX_SOURCE	1
     16   1.96       apb #define _POSIX_C_SOURCE	200112L
     17   1.96       apb #define _XOPEN_SOURCE 600
     18   1.96       apb #endif /* __NetBSD__ */
     19    1.4        tv 
     20   1.63  christos /*
     21   1.63  christos  * Linux: <features.h> turns on _POSIX_SOURCE by default, even though the
     22   1.96       apb  * program (not the OS) should do that.  Preload <features.h> and
     23   1.96       apb  * then override some of the feature test macros.
     24   1.63  christos  */
     25   1.63  christos 
     26   1.63  christos #if defined(__linux__) && HAVE_FEATURES_H
     27   1.63  christos #include <features.h>
     28    1.4        tv #undef _POSIX_SOURCE
     29    1.4        tv #undef _POSIX_C_SOURCE
     30   1.96       apb #define __USE_ISOC99 1
     31   1.96       apb #endif	/* __linux__ && HAVE_FEATURES_H */
     32    1.4        tv 
     33  1.111  christos /*
     34  1.111  christos  * Type substitutes.
     35  1.111  christos  * These are controlled via HAVE_TYPE protections and some of them are needed
     36  1.111  christos  * in other header files (in the build tree not in the host). This is because
     37  1.111  christos  * we are mixing the header files (which don't need them) with extensions
     38  1.111  christos  * such as the Solaris headers which depend on types defined by the native
     39  1.111  christos  * system headers, and might be missing in the build host.
     40  1.111  christos  */
     41  1.111  christos 
     42  1.111  christos #if !HAVE_ID_T
     43  1.111  christos typedef unsigned int id_t;
     44  1.111  christos #endif
     45  1.111  christos 
     46  1.111  christos #if !HAVE_SOCKLEN_T
     47  1.111  christos /*
     48  1.111  christos  * This is defined as int for compatibility with legacy systems (and not
     49  1.111  christos  * unsigned int), since universally it was int in most systems that did not
     50  1.111  christos  * define it.
     51  1.111  christos  */
     52  1.111  christos typedef int socklen_t;
     53  1.111  christos #endif
     54  1.111  christos 
     55  1.111  christos #if !HAVE_U_LONG
     56  1.111  christos typedef unsigned long u_long;
     57  1.111  christos #endif
     58  1.111  christos 
     59  1.111  christos #if !HAVE_U_CHAR
     60  1.111  christos typedef unsigned char u_char;
     61  1.111  christos #endif
     62  1.111  christos 
     63  1.111  christos #if !HAVE_U_INT
     64  1.111  christos typedef unsigned int u_int;
     65  1.111  christos #endif
     66  1.111  christos 
     67  1.111  christos #if !HAVE_U_SHORT
     68  1.111  christos typedef unsigned short u_short;
     69  1.111  christos #endif
     70  1.111  christos 
     71  1.111  christos #if !HAVE_U_LONGLONG_T
     72  1.111  christos typedef uint64_t u_longlong_t;
     73  1.111  christos #endif
     74  1.111  christos 
     75    1.1   thorpej /* System headers needed for (re)definitions below. */
     76    1.1   thorpej 
     77    1.1   thorpej #include <sys/types.h>
     78    1.3        tv #include <sys/mman.h>
     79    1.3        tv #include <sys/param.h>
     80   1.39       jmc /* time.h needs to be pulled in first at least on netbsd w/o _NETBSD_SOURCE */
     81   1.39       jmc #include <sys/time.h>
     82    1.3        tv #include <sys/stat.h>
     83    1.1   thorpej #include <errno.h>
     84    1.1   thorpej #include <fcntl.h>
     85    1.1   thorpej #include <limits.h>
     86    1.1   thorpej #include <paths.h>
     87  1.106  christos #include <ctype.h>
     88    1.3        tv #include <stdarg.h>
     89    1.1   thorpej #include <stdio.h>
     90    1.3        tv #include <stdlib.h>
     91    1.1   thorpej #include <string.h>
     92  1.105  christos #if HAVE_ERR_H
     93  1.105  christos #include <err.h>
     94  1.105  christos #endif
     95    1.1   thorpej 
     96    1.3        tv #if HAVE_SYS_CDEFS_H
     97    1.3        tv #include <sys/cdefs.h>
     98    1.3        tv #endif
     99    1.6        tv #if HAVE_SYS_SYSLIMITS_H
    100    1.6        tv #include <sys/syslimits.h>
    101    1.6        tv #endif
    102    1.3        tv #if HAVE_SYS_SYSMACROS_H
    103    1.3        tv /* major(), minor() on SVR4 */
    104    1.3        tv #include <sys/sysmacros.h>
    105    1.3        tv #endif
    106    1.1   thorpej #if HAVE_INTTYPES_H
    107    1.1   thorpej #include <inttypes.h>
    108    1.1   thorpej #endif
    109    1.1   thorpej #if HAVE_STDDEF_H
    110    1.1   thorpej #include <stddef.h>
    111    1.1   thorpej #endif
    112  1.105  christos #if HAVE_LIBGEN_H
    113  1.105  christos #include <libgen.h>
    114  1.105  christos #endif
    115    1.3        tv 
    116   1.87  christos #if HAVE_RPC_TYPES_H
    117   1.87  christos #include <rpc/types.h>
    118   1.87  christos #endif
    119   1.87  christos 
    120   1.42       jmc #ifdef _NETBSD_SOURCE
    121   1.42       jmc #error _NETBSD_SOURCE is *not* to be defined.
    122   1.42       jmc #endif
    123   1.42       jmc 
    124   1.45       jmc /* Need this since we can't depend on NetBSD's version to be around */
    125   1.45       jmc #ifdef __UNCONST
    126   1.45       jmc #undef __UNCONST
    127   1.45       jmc #endif
    128   1.45       jmc #define __UNCONST(a)   ((void *)(unsigned long)(const void *)(a))
    129  1.100  christos #ifdef __UNVOLATILE
    130  1.100  christos #undef __UNVOLATILE
    131  1.100  christos #endif
    132  1.100  christos #define __UNVOLATILE(a)        ((void *)(unsigned long)(volatile void *)(a))
    133  1.100  christos 
    134   1.45       jmc 
    135   1.85     joerg #undef __predict_false
    136   1.86     joerg #define __predict_false(x) (x)
    137   1.85     joerg #undef __predict_true
    138   1.86     joerg #define __predict_true(x) (x)
    139   1.85     joerg 
    140    1.3        tv /* We don't include <pwd.h> here, so that "compat_pwd.h" works. */
    141    1.3        tv struct passwd;
    142    1.3        tv 
    143   1.71       dbj /* We don't include <grp.h> either */
    144   1.71       dbj struct group;
    145   1.71       dbj 
    146    1.3        tv /* Assume an ANSI compiler for the host. */
    147    1.3        tv 
    148    1.3        tv #undef __P
    149    1.3        tv #define __P(x) x
    150    1.3        tv 
    151    1.3        tv #ifndef __BEGIN_DECLS
    152    1.3        tv #define __BEGIN_DECLS
    153    1.3        tv #endif
    154    1.3        tv #ifndef __END_DECLS
    155    1.3        tv #define __END_DECLS
    156    1.3        tv #endif
    157    1.3        tv 
    158   1.98       apb /* Some things in NetBSD <sys/cdefs.h>. */
    159    1.3        tv 
    160   1.12     bjh21 #ifndef __CONCAT
    161   1.12     bjh21 #define	__CONCAT(x,y)	x ## y
    162   1.12     bjh21 #endif
    163    1.1   thorpej #if !defined(__attribute__) && !defined(__GNUC__)
    164    1.1   thorpej #define __attribute__(x)
    165    1.1   thorpej #endif
    166   1.34      matt #if !defined(__packed)
    167   1.34      matt #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
    168   1.34      matt #define __packed	__attribute__((__packed__))
    169   1.72    sketch #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
    170   1.72    sketch #define __packed	__attribute__((__packed__))
    171   1.34      matt #else
    172   1.34      matt #define	__packed	error: no __packed for this compiler
    173   1.34      matt #endif
    174   1.34      matt #endif /* !__packed */
    175    1.3        tv #ifndef __RENAME
    176    1.3        tv #define __RENAME(x)
    177    1.3        tv #endif
    178    1.3        tv #undef __aconst
    179    1.3        tv #define __aconst
    180    1.3        tv #undef __dead
    181    1.3        tv #define __dead
    182   1.80     joerg #undef __printflike
    183   1.80     joerg #define __printflike(x,y)
    184   1.92     joerg #undef __format_arg
    185   1.92     joerg #define __format_arg(x)
    186   1.17     bjh21 #undef __restrict
    187   1.17     bjh21 #define __restrict
    188   1.57  christos #undef __unused
    189   1.57  christos #define __unused
    190   1.77  christos #undef __arraycount
    191   1.76  christos #define	__arraycount(__x)	(sizeof(__x) / sizeof(__x[0]))
    192   1.93       apb #undef __USE
    193   1.93       apb #define __USE(a) ((void)(a))
    194   1.98       apb #undef __type_min_s
    195   1.98       apb #define __type_min_s(t) ((t)((1ULL << (sizeof(t) * NBBY - 1))))
    196   1.98       apb #undef __type_max_s
    197   1.98       apb #define __type_max_s(t) ((t)~((1ULL << (sizeof(t) * NBBY - 1))))
    198   1.98       apb #undef __type_min_u
    199   1.98       apb #define __type_min_u(t) ((t)0ULL)
    200   1.98       apb #undef __type_max_u
    201   1.98       apb #define __type_max_u(t) ((t)~0ULL)
    202   1.98       apb #undef __type_is_signed
    203   1.98       apb #define __type_is_signed(t) (/*LINTED*/__type_min_s(t) + (t)1 < (t)1)
    204   1.98       apb #undef __type_min
    205   1.98       apb #define __type_min(t) (__type_is_signed(t) ? __type_min_s(t) : __type_min_u(t))
    206   1.98       apb #undef __type_max
    207   1.98       apb #define __type_max(t) (__type_is_signed(t) ? __type_max_s(t) : __type_max_u(t))
    208    1.3        tv 
    209    1.3        tv /* Dirent support. */
    210    1.3        tv 
    211    1.3        tv #if HAVE_DIRENT_H
    212   1.48      tron # if defined(__linux__) && defined(__USE_BSD)
    213   1.48      tron #  undef __USE_BSD
    214   1.48      tron #  include <dirent.h>
    215   1.48      tron #  define __USE_BSD 1
    216   1.48      tron #  undef d_fileno
    217   1.48      tron # else
    218   1.48      tron #  include <dirent.h>
    219   1.52    dyoung #  if defined(__DARWIN_UNIX03)
    220   1.52    dyoung #   undef d_fileno
    221   1.52    dyoung #  endif
    222   1.48      tron # endif
    223    1.3        tv # define NAMLEN(dirent) (strlen((dirent)->d_name))
    224    1.3        tv #else
    225    1.3        tv # define dirent direct
    226    1.3        tv # define NAMLEN(dirent) ((dirent)->d_namlen)
    227    1.3        tv # if HAVE_SYS_NDIR_H
    228    1.3        tv #  include <sys/ndir.h>
    229    1.3        tv # endif
    230    1.3        tv # if HAVE_SYS_DIR_H
    231    1.3        tv #  include <sys/dir.h>
    232    1.3        tv # endif
    233    1.3        tv # if HAVE_NDIR_H
    234    1.3        tv #  include <ndir.h>
    235    1.3        tv # endif
    236    1.3        tv #endif
    237    1.3        tv 
    238    1.1   thorpej /* Prototypes for replacement functions. */
    239   1.27       uwe 
    240  1.105  christos #if !HAVE_DECL_ATOLL
    241   1.27       uwe long long int atoll(const char *);
    242   1.27       uwe #endif
    243    1.1   thorpej 
    244  1.105  christos #if !HAVE_DECL_ASPRINTF
    245    1.3        tv int asprintf(char **, const char *, ...);
    246    1.3        tv #endif
    247    1.3        tv 
    248  1.105  christos #if !HAVE_DECL_ASNPRINTF
    249    1.3        tv int asnprintf(char **, size_t, const char *, ...);
    250    1.3        tv #endif
    251    1.3        tv 
    252  1.105  christos #if !HAVE_DECL_BASENAME
    253    1.1   thorpej char *basename(char *);
    254    1.1   thorpej #endif
    255    1.1   thorpej 
    256    1.4        tv #if !HAVE_DECL_OPTIND
    257    1.4        tv int getopt(int, char *const *, const char *);
    258    1.4        tv extern char *optarg;
    259    1.4        tv extern int optind, opterr, optopt;
    260    1.4        tv #endif
    261    1.4        tv 
    262  1.105  christos #if !HAVE_DECL_DIRNAME
    263    1.1   thorpej char *dirname(char *);
    264    1.1   thorpej #endif
    265    1.1   thorpej 
    266  1.108  christos #if !HAVE_DECL_FPURGE
    267  1.109  christos int fpurge(FILE *);
    268  1.108  christos #endif
    269  1.108  christos 
    270    1.3        tv #if !HAVE_DIRFD
    271    1.3        tv #if HAVE_DIR_DD_FD
    272    1.3        tv #define dirfd(dirp) ((dirp)->dd_fd)
    273   1.53   thorpej #elif HAVE_DIR___DD_FD
    274   1.53   thorpej #define dirfd(dirp) ((dirp)->__dd_fd)
    275    1.3        tv #else
    276   1.39       jmc /*XXX: Very hacky but no other way to bring this into scope w/o defining
    277   1.39       jmc   _NETBSD_SOURCE which we're avoiding. */
    278   1.39       jmc #ifdef __NetBSD__
    279   1.39       jmc struct _dirdesc {
    280   1.39       jmc         int     dd_fd;          /* file descriptor associated with directory */
    281   1.39       jmc 	long    dd_loc;         /* offset in current buffer */
    282   1.39       jmc 	long    dd_size;        /* amount of data returned by getdents */
    283   1.39       jmc 	char    *dd_buf;        /* data buffer */
    284   1.39       jmc 	int     dd_len;         /* size of data buffer */
    285   1.39       jmc 	off_t   dd_seek;        /* magic cookie returned by getdents */
    286   1.39       jmc 	long    dd_rewind;      /* magic cookie for rewinding */
    287   1.39       jmc 	int     dd_flags;       /* flags for readdir */
    288   1.39       jmc 	void    *dd_lock;       /* lock for concurrent access */
    289   1.39       jmc };
    290   1.39       jmc #define dirfd(dirp)     (((struct _dirdesc *)dirp)->dd_fd)
    291   1.39       jmc #else
    292    1.3        tv #error cannot figure out how to turn a DIR * into a fd
    293    1.3        tv #endif
    294    1.3        tv #endif
    295   1.39       jmc #endif
    296    1.3        tv 
    297  1.104  christos #if !HAVE_DECL_ERR
    298    1.3        tv void err(int, const char *, ...);
    299  1.104  christos #endif
    300  1.104  christos #if !HAVE_DECL_ERRC
    301  1.104  christos void errc(int, int, const char *, ...);
    302  1.104  christos #endif
    303  1.104  christos #if !HAVE_DECL_ERRX
    304    1.3        tv void errx(int, const char *, ...);
    305  1.104  christos #endif
    306  1.104  christos #if !HAVE_DECL_VERRC
    307  1.104  christos void verrc(int, int, const char *, va_list);
    308  1.104  christos #endif
    309  1.104  christos #if !HAVE_DECL_VERRX
    310  1.104  christos void verrx(int, const char *, va_list);
    311  1.104  christos #endif
    312  1.104  christos #if !HAVE_DECL_WARN
    313    1.1   thorpej void warn(const char *, ...);
    314    1.1   thorpej #endif
    315   1.97  christos #if !HAVE_DECL_WARNC
    316   1.97  christos void warnc(int, const char *, ...);
    317   1.97  christos #endif
    318  1.104  christos #if !HAVE_DECL_WARNX
    319  1.104  christos void warnx(const char *, ...);
    320  1.104  christos #endif
    321   1.97  christos #if !HAVE_DECL_VWARNC
    322   1.97  christos void vwarnc(int, const char *, va_list);
    323   1.97  christos #endif
    324  1.104  christos #if !HAVE_DECL_VWARNX
    325  1.104  christos void vwarnx(const char *, va_list);
    326   1.97  christos #endif
    327  1.104  christos 
    328  1.104  christos #if !HAVE_DECL_MI_VECTOR_HASH
    329  1.104  christos void     mi_vector_hash(const void * __restrict, size_t, uint32_t,
    330  1.104  christos     uint32_t[3]);
    331   1.97  christos #endif
    332    1.1   thorpej 
    333  1.104  christos 
    334   1.56  christos #if !HAVE_ESETFUNC
    335   1.56  christos void (*esetfunc(void (*)(int, const char *, ...)))(int, const char *, ...);
    336   1.56  christos size_t estrlcpy(char *, const char *, size_t);
    337   1.56  christos size_t estrlcat(char *, const char *, size_t);
    338   1.56  christos char *estrdup(const char *);
    339   1.59  nakayama char *estrndup(const char *, size_t);
    340   1.56  christos void *ecalloc(size_t, size_t);
    341   1.56  christos void *emalloc(size_t);
    342   1.56  christos void *erealloc(void *, size_t);
    343   1.56  christos FILE *efopen(const char *, const char *);
    344   1.56  christos int easprintf(char **, const char *, ...);
    345   1.56  christos int evasprintf(char **, const char *, va_list);
    346   1.56  christos #endif
    347   1.56  christos 
    348  1.105  christos #if !HAVE_DECL_FGETLN
    349    1.1   thorpej char *fgetln(FILE *, size_t *);
    350    1.1   thorpej #endif
    351  1.105  christos #if !HAVE_DECL_DPRINTF
    352   1.88  christos int dprintf(int, const char *, ...);
    353   1.88  christos #endif
    354    1.1   thorpej 
    355    1.1   thorpej #if !HAVE_FLOCK
    356    1.1   thorpej # define LOCK_SH		0x01
    357    1.1   thorpej # define LOCK_EX		0x02
    358    1.1   thorpej # define LOCK_NB		0x04
    359    1.1   thorpej # define LOCK_UN		0x08
    360    1.1   thorpej int flock(int, int);
    361    1.1   thorpej #endif
    362    1.1   thorpej 
    363  1.105  christos #if !HAVE_DECL_FPARSELN || BROKEN_FPARSELN
    364    1.1   thorpej # define FPARSELN_UNESCESC	0x01
    365    1.1   thorpej # define FPARSELN_UNESCCONT	0x02
    366    1.1   thorpej # define FPARSELN_UNESCCOMM	0x04
    367    1.1   thorpej # define FPARSELN_UNESCREST	0x08
    368    1.1   thorpej # define FPARSELN_UNESCALL	0x0f
    369    1.1   thorpej char *fparseln(FILE *, size_t *, size_t *, const char [3], int);
    370   1.10     bjh21 #endif
    371   1.10     bjh21 
    372  1.105  christos #if !HAVE_DECL_GETDELIM
    373   1.82     joerg ssize_t getdelim(char **, size_t *, int, FILE *);
    374  1.105  christos #endif
    375  1.105  christos #if !HAVE_DECL_GETLINE
    376   1.82     joerg ssize_t getline(char **, size_t *, FILE *);
    377   1.82     joerg #endif
    378   1.82     joerg 
    379  1.105  christos #if !HAVE_DECL_ISSETUGID
    380   1.10     bjh21 int issetugid(void);
    381    1.1   thorpej #endif
    382    1.1   thorpej 
    383  1.105  christos #if !HAVE_DECL_ISBLANK && !defined(isblank)
    384    1.3        tv #define isblank(x) ((x) == ' ' || (x) == '\t')
    385   1.21     lukem #endif
    386   1.21     lukem 
    387   1.39       jmc #define __nbcompat_bswap16(x)	((((x) << 8) & 0xff00) | (((x) >> 8) & 0x00ff))
    388   1.39       jmc 
    389   1.39       jmc #define __nbcompat_bswap32(x)	((((x) << 24) & 0xff000000) | \
    390   1.39       jmc 				 (((x) <<  8) & 0x00ff0000) | \
    391   1.39       jmc 				 (((x) >>  8) & 0x0000ff00) | \
    392   1.39       jmc 				 (((x) >> 24) & 0x000000ff))
    393    1.4        tv 
    394   1.39       jmc #define __nbcompat_bswap64(x)	(((u_int64_t)bswap32((x)) << 32) | \
    395   1.39       jmc 				 ((u_int64_t)bswap32((x) >> 32)))
    396    1.4        tv 
    397   1.50       wiz #if ! HAVE_DECL_BSWAP16
    398   1.39       jmc #ifdef bswap16
    399   1.39       jmc #undef bswap16
    400   1.39       jmc #endif
    401   1.39       jmc #define bswap16(x)	__nbcompat_bswap16(x)
    402   1.39       jmc #endif
    403   1.50       wiz #if ! HAVE_DECL_BSWAP32
    404   1.39       jmc #ifdef bswap32
    405   1.39       jmc #undef bswap32
    406   1.39       jmc #endif
    407   1.39       jmc #define bswap32(x)	__nbcompat_bswap32(x)
    408   1.39       jmc #endif
    409   1.50       wiz #if ! HAVE_DECL_BSWAP64
    410   1.39       jmc #ifdef bswap64
    411   1.39       jmc #undef bswap64
    412   1.39       jmc #endif
    413   1.39       jmc #define bswap64(x)	__nbcompat_bswap64(x)
    414   1.18   thorpej #endif
    415   1.18   thorpej 
    416  1.105  christos #if !HAVE_DECL_MKSTEMP
    417   1.18   thorpej int mkstemp(char *);
    418   1.18   thorpej #endif
    419   1.18   thorpej 
    420  1.105  christos #if !HAVE_DECL_MKDTEMP
    421   1.18   thorpej char *mkdtemp(char *);
    422   1.18   thorpej #endif
    423   1.18   thorpej 
    424   1.18   thorpej #if !HAVE_MKSTEMP || !HAVE_MKDTEMP
    425   1.67       apb /* This is a prototype for the internal function defined in
    426   1.67       apb  * src/lib/lib/stdio/gettemp.c */
    427   1.67       apb int __nbcompat_gettemp(char *, int *, int);
    428    1.4        tv #endif
    429    1.4        tv 
    430  1.105  christos #if !HAVE_DECL_PREAD
    431    1.1   thorpej ssize_t pread(int, void *, size_t, off_t);
    432    1.2     lukem #endif
    433    1.2     lukem 
    434  1.105  christos #if !HAVE_DECL_HEAPSORT
    435   1.44       jmc int heapsort (void *, size_t, size_t, int (*)(const void *, const void *));
    436   1.44       jmc #endif
    437   1.44       jmc /* Make them use our version */
    438   1.44       jmc #  define heapsort __nbcompat_heapsort
    439   1.44       jmc 
    440   1.71       dbj char	       *flags_to_string(unsigned long, const char *);
    441   1.71       dbj int		string_to_flags(char **, unsigned long *, unsigned long *);
    442   1.71       dbj 
    443   1.65       tls /*
    444   1.65       tls  * HAVE_X_FROM_Y and HAVE_PWCACHE_FOODB go together, because we cannot
    445   1.65       tls  * supply an implementation of one without the others -- some parts are
    446   1.65       tls  * libc internal and this varies from system to system.
    447   1.65       tls  *
    448   1.65       tls  * XXX this is dubious anyway: we assume (see HAVE_DECLs below) that if the
    449   1.65       tls  * XXX host system has all of these functions, all of their interfaces
    450   1.65       tls  * XXX and interactions are exactly the same as in our libc/libutil -- ugh.
    451   1.65       tls  */
    452   1.75      tron #if !HAVE_USER_FROM_UID || !HAVE_UID_FROM_USER || !HAVE_GROUP_FROM_GID || \
    453   1.75      tron     !HAVE_GID_FROM_GROUP || !HAVE_PWCACHE_USERDB || !HAVE_PWCACHE_GROUDB
    454   1.75      tron /* Make them use our version */
    455   1.75      tron #  define user_from_uid __nbcompat_user_from_uid
    456   1.75      tron #  define uid_from_user __nbcompat_uid_from_user
    457   1.75      tron #  define pwcache_userdb __nbcompat_pwcache_userdb
    458   1.75      tron #  define group_from_gid __nbcompat_group_from_gid
    459   1.75      tron #  define gid_from_group __nbcompat_gid_from_group
    460   1.75      tron #  define pwcache_groupdb __nbcompat_pwcache_groupdb
    461   1.62  christos #endif
    462    1.1   thorpej 
    463   1.65       tls #if !HAVE_DECL_UID_FROM_USER
    464   1.64  christos int uid_from_user(const char *, uid_t *);
    465   1.64  christos #endif
    466   1.73  christos 
    467   1.65       tls #if !HAVE_DECL_USER_FROM_UID
    468   1.65       tls const char *user_from_uid(uid_t, int);
    469   1.65       tls #endif
    470   1.73  christos 
    471   1.65       tls #if !HAVE_DECL_PWCACHE_USERDB
    472   1.65       tls int pwcache_userdb(int (*)(int), void (*)(void),
    473   1.75      tron                 struct passwd * (*)(const char *), struct passwd * (*)(uid_t));
    474   1.65       tls #endif
    475   1.73  christos 
    476   1.64  christos #if !HAVE_DECL_GID_FROM_GROUP
    477   1.64  christos int gid_from_group(const char *, gid_t *);
    478   1.64  christos #endif
    479   1.73  christos 
    480   1.65       tls #if !HAVE_DECL_GROUP_FROM_GID
    481   1.65       tls const char *group_from_gid(gid_t, int);
    482   1.64  christos #endif
    483   1.73  christos 
    484   1.65       tls #if !HAVE_DECL_PWCACHE_GROUPDB
    485   1.65       tls int pwcache_groupdb(int (*)(int), void (*)(void),
    486   1.73  christos     struct group * (*)(const char *), struct group * (*)(gid_t));
    487   1.64  christos #endif
    488   1.65       tls 
    489  1.104  christos #if !HAVE_DECL_STRLCAT
    490  1.104  christos size_t		strlcat(char *, const char *, size_t);
    491  1.104  christos #endif
    492  1.104  christos #if !HAVE_DECL_STRLCPY
    493  1.104  christos size_t		strlcpy(char *, const char *, size_t);
    494  1.104  christos #endif
    495   1.64  christos #if !HAVE_DECL_STRNDUP
    496   1.64  christos char		*strndup(const char *, size_t);
    497   1.64  christos #endif
    498   1.94       apb #if !HAVE_DECL_STRNLEN
    499   1.95       apb size_t		strnlen(const char *, size_t);
    500   1.94       apb #endif
    501   1.64  christos #if !HAVE_DECL_LCHFLAGS
    502   1.64  christos int		lchflags(const char *, unsigned long);
    503   1.64  christos #endif
    504   1.64  christos #if !HAVE_DECL_LCHMOD
    505   1.64  christos int		lchmod(const char *, mode_t);
    506   1.64  christos #endif
    507   1.64  christos #if !HAVE_DECL_LCHOWN
    508   1.64  christos int		lchown(const char *, uid_t, gid_t);
    509   1.64  christos #endif
    510   1.64  christos 
    511  1.105  christos #if !HAVE_DECL_PWRITE
    512    1.1   thorpej ssize_t pwrite(int, const void *, size_t, off_t);
    513    1.1   thorpej #endif
    514    1.1   thorpej 
    515   1.61     lukem #if !HAVE_RAISE_DEFAULT_SIGNAL
    516   1.61     lukem int raise_default_signal(int);
    517   1.61     lukem #endif
    518   1.61     lukem 
    519  1.105  christos #if !HAVE_DECL_REALLOCARR
    520  1.102     kamil int reallocarr(void *, size_t, size_t);
    521  1.102     kamil #endif
    522  1.102     kamil 
    523  1.105  christos #if !HAVE_DECL_SETENV
    524    1.3        tv int setenv(const char *, const char *, int);
    525    1.3        tv #endif
    526    1.3        tv 
    527    1.6        tv #if !HAVE_DECL_SETGROUPENT
    528    1.3        tv int setgroupent(int);
    529    1.3        tv #endif
    530    1.3        tv 
    531    1.6        tv #if !HAVE_DECL_SETPASSENT
    532    1.3        tv int setpassent(int);
    533    1.3        tv #endif
    534    1.3        tv 
    535  1.105  christos #if !HAVE_DECL_GETPROGNAME
    536    1.3        tv const char *getprogname(void);
    537  1.105  christos #endif
    538  1.105  christos #if !HAVE_DECL_SETPROGNAME
    539    1.3        tv void setprogname(const char *);
    540    1.3        tv #endif
    541    1.3        tv 
    542   1.91       apb #if !HAVE_SNPRINTB_M
    543   1.91       apb int snprintb(char *, size_t, const char *, uint64_t);
    544   1.91       apb int snprintb_m(char *, size_t, const char *, uint64_t, size_t);
    545   1.91       apb #endif
    546   1.91       apb 
    547  1.107  christos #if !HAVE_DECL_SNPRINTF && !defined(snprintf)
    548    1.3        tv int snprintf(char *, size_t, const char *, ...);
    549    1.3        tv #endif
    550    1.3        tv 
    551  1.105  christos #if !HAVE_DECL_STRMODE
    552   1.55       apb void strmode(mode_t, char *);
    553   1.55       apb #endif
    554   1.55       apb 
    555  1.105  christos #if !HAVE_DECL_STRNDUP
    556   1.59  nakayama char *strndup(const char *, size_t);
    557   1.59  nakayama #endif
    558   1.59  nakayama 
    559  1.105  christos #if !HAVE_DECL_STRSEP
    560    1.3        tv char *strsep(char **, const char *);
    561   1.23     lukem #endif
    562   1.23     lukem 
    563   1.51       wiz #if !HAVE_DECL_STRSUFTOLL
    564   1.23     lukem long long strsuftoll(const char *, const char *, long long, long long);
    565   1.23     lukem long long strsuftollx(const char *, const char *,
    566   1.23     lukem 			long long, long long, char *, size_t);
    567   1.16     pooka #endif
    568   1.16     pooka 
    569  1.105  christos #if !HAVE_DECL_STRTOLL
    570   1.20     lukem long long strtoll(const char *, char **, int);
    571   1.20     lukem #endif
    572   1.20     lukem 
    573  1.105  christos #if !HAVE_DECL_STRTOI
    574  1.101  christos intmax_t strtoi(const char * __restrict, char ** __restrict, int,
    575  1.101  christos     intmax_t, intmax_t, int *);
    576  1.101  christos #endif
    577  1.101  christos 
    578  1.105  christos #if !HAVE_DECL_STRTOU
    579  1.101  christos uintmax_t strtou(const char * __restrict, char ** __restrict, int,
    580  1.101  christos     uintmax_t, uintmax_t, int *);
    581  1.101  christos #endif
    582  1.101  christos 
    583  1.105  christos #if !HAVE_DECL_USER_FROM_UID
    584   1.16     pooka const char *user_from_uid(uid_t, int);
    585   1.38   thorpej #endif
    586   1.38   thorpej 
    587  1.105  christos #if !HAVE_DECL_GROUP_FROM_GID
    588   1.16     pooka const char *group_from_gid(gid_t, int);
    589    1.3        tv #endif
    590    1.3        tv 
    591  1.105  christos #if !HAVE_DECL_VASPRINTF
    592    1.3        tv int vasprintf(char **, const char *, va_list);
    593    1.3        tv #endif
    594    1.3        tv 
    595  1.105  christos #if !HAVE_DECL_VASNPRINTF
    596    1.3        tv int vasnprintf(char **, size_t, const char *, va_list);
    597    1.3        tv #endif
    598    1.3        tv 
    599  1.107  christos #if !HAVE_DECL_VSNPRINTF && !defined(vsnprintf)
    600    1.3        tv int vsnprintf(char *, size_t, const char *, va_list);
    601    1.3        tv #endif
    602    1.3        tv 
    603    1.1   thorpej /*
    604    1.1   thorpej  * getmode() and setmode() are always defined, as these function names
    605    1.1   thorpej  * exist but with very different meanings on other OS's.  The compat
    606    1.1   thorpej  * versions here simply accept an octal mode number; the "u+x,g-w" type
    607    1.1   thorpej  * of syntax is not accepted.
    608    1.1   thorpej  */
    609    1.1   thorpej 
    610    1.1   thorpej #define getmode __nbcompat_getmode
    611    1.1   thorpej #define setmode __nbcompat_setmode
    612    1.1   thorpej 
    613    1.1   thorpej mode_t getmode(const void *, mode_t);
    614    1.1   thorpej void *setmode(const char *);
    615    1.1   thorpej 
    616    1.3        tv /* Eliminate assertions embedded in binaries. */
    617    1.1   thorpej 
    618    1.1   thorpej #undef _DIAGASSERT
    619    1.3        tv #define _DIAGASSERT(x)
    620    1.4        tv 
    621   1.31     lukem /* Various sources use this */
    622   1.31     lukem #undef	__RCSID
    623   1.74     joerg #define	__RCSID(x) struct XXXNETBSD_RCSID
    624   1.31     lukem #undef	__SCCSID
    625   1.31     lukem #define	__SCCSID(x)
    626   1.31     lukem #undef	__COPYRIGHT
    627   1.74     joerg #define	__COPYRIGHT(x) struct XXXNETBSD_COPYRIGHT
    628   1.31     lukem #undef	__KERNEL_RCSID
    629   1.31     lukem #define	__KERNEL_RCSID(x,y)
    630   1.31     lukem 
    631    1.4        tv /* Heimdal expects this one. */
    632    1.4        tv 
    633    1.3        tv #undef RCSID
    634    1.3        tv #define RCSID(x)
    635    1.1   thorpej 
    636    1.3        tv /* Some definitions not available on all systems. */
    637    1.1   thorpej 
    638   1.72    sketch #ifndef __inline
    639   1.72    sketch #define __inline inline
    640   1.72    sketch #endif
    641   1.72    sketch 
    642    1.4        tv /* <errno.h> */
    643    1.4        tv 
    644    1.4        tv #ifndef EFTYPE
    645    1.4        tv #define EFTYPE EIO
    646    1.4        tv #endif
    647    1.4        tv 
    648    1.4        tv /* <fcntl.h> */
    649    1.4        tv 
    650    1.4        tv #ifndef O_EXLOCK
    651    1.4        tv #define O_EXLOCK 0
    652    1.4        tv #endif
    653    1.4        tv #ifndef O_SHLOCK
    654    1.4        tv #define O_SHLOCK 0
    655    1.4        tv #endif
    656   1.99  christos #ifndef O_CLOEXEC
    657   1.99  christos #define O_CLOEXEC 0
    658   1.99  christos #endif
    659    1.4        tv 
    660   1.69       apb /* <inttypes.h> */
    661   1.69       apb 
    662   1.78       apb #if UCHAR_MAX == 0xffU			/* char is an 8-bit type */
    663   1.78       apb #ifndef PRId8
    664   1.78       apb #define PRId8 "hhd"
    665   1.78       apb #endif
    666   1.78       apb #ifndef PRIi8
    667   1.78       apb #define PRIi8 "hhi"
    668   1.78       apb #endif
    669   1.78       apb #ifndef PRIo8
    670   1.78       apb #define PRIo8 "hho"
    671   1.78       apb #endif
    672   1.78       apb #ifndef PRIu8
    673   1.78       apb #define PRIu8 "hhu"
    674   1.78       apb #endif
    675   1.78       apb #ifndef PRIx8
    676   1.78       apb #define PRIx8 "hhx"
    677   1.78       apb #endif
    678   1.78       apb #ifndef PRIX8
    679   1.78       apb #define PRIX8 "hhX"
    680   1.78       apb #endif
    681   1.78       apb #ifndef SCNd8
    682   1.78       apb #define SCNd8 "hhd"
    683   1.78       apb #endif
    684   1.78       apb #ifndef SCNi8
    685   1.78       apb #define SCNi8 "hhi"
    686   1.78       apb #endif
    687   1.78       apb #ifndef SCNo8
    688   1.78       apb #define SCNo8 "hho"
    689   1.78       apb #endif
    690   1.78       apb #ifndef SCNu8
    691   1.78       apb #define SCNu8 "hhu"
    692   1.78       apb #endif
    693   1.78       apb #ifndef SCNx8
    694   1.78       apb #define SCNx8 "hhx"
    695   1.78       apb #endif
    696   1.78       apb #ifndef SCNX8
    697   1.78       apb #define SCNX8 "hhX"
    698   1.78       apb #endif
    699   1.78       apb #endif					/* char is an 8-bit type */
    700   1.78       apb #if ! (defined(PRId8) && defined(PRIi8) && defined(PRIo8) && \
    701   1.78       apb 	defined(PRIu8) && defined(PRIx8) && defined(PRIX8))
    702   1.78       apb #error "Don't know how to define PRI[diouxX]8"
    703   1.78       apb #endif
    704   1.78       apb #if ! (defined(SCNd8) && defined(SCNi8) && defined(SCNo8) && \
    705   1.78       apb 	defined(SCNu8) && defined(SCNx8) && defined(SCNX8))
    706   1.78       apb #error "Don't know how to define SCN[diouxX]8"
    707   1.78       apb #endif
    708   1.78       apb 
    709   1.70       apb #if USHRT_MAX == 0xffffU		/* short is a 16-bit type */
    710   1.69       apb #ifndef PRId16
    711   1.69       apb #define PRId16 "hd"
    712   1.69       apb #endif
    713   1.69       apb #ifndef PRIi16
    714   1.69       apb #define PRIi16 "hi"
    715   1.69       apb #endif
    716   1.69       apb #ifndef PRIo16
    717   1.69       apb #define PRIo16 "ho"
    718   1.69       apb #endif
    719   1.69       apb #ifndef PRIu16
    720   1.69       apb #define PRIu16 "hu"
    721   1.69       apb #endif
    722   1.69       apb #ifndef PRIx16
    723   1.69       apb #define PRIx16 "hx"
    724   1.69       apb #endif
    725   1.69       apb #ifndef PRIX16
    726   1.69       apb #define PRIX16 "hX"
    727   1.69       apb #endif
    728   1.78       apb #ifndef SCNd16
    729   1.78       apb #define SCNd16 "hd"
    730   1.78       apb #endif
    731   1.78       apb #ifndef SCNi16
    732   1.78       apb #define SCNi16 "hi"
    733   1.78       apb #endif
    734   1.78       apb #ifndef SCNo16
    735   1.78       apb #define SCNo16 "ho"
    736   1.78       apb #endif
    737   1.78       apb #ifndef SCNu16
    738   1.78       apb #define SCNu16 "hu"
    739   1.78       apb #endif
    740   1.78       apb #ifndef SCNx16
    741   1.78       apb #define SCNx16 "hx"
    742   1.78       apb #endif
    743   1.78       apb #ifndef SCNX16
    744   1.78       apb #define SCNX16 "hX"
    745   1.78       apb #endif
    746   1.69       apb #endif					/* short is a 16-bit type */
    747   1.69       apb #if ! (defined(PRId16) && defined(PRIi16) && defined(PRIo16) && \
    748   1.69       apb 	defined(PRIu16) && defined(PRIx16) && defined(PRIX16))
    749   1.69       apb #error "Don't know how to define PRI[diouxX]16"
    750   1.69       apb #endif
    751   1.78       apb #if ! (defined(SCNd16) && defined(SCNi16) && defined(SCNo16) && \
    752   1.78       apb 	defined(SCNu16) && defined(SCNx16) && defined(SCNX16))
    753   1.78       apb #error "Don't know how to define SCN[diouxX]16"
    754   1.78       apb #endif
    755   1.69       apb 
    756   1.70       apb #if UINT_MAX == 0xffffffffU		/* int is a 32-bit type */
    757   1.69       apb #ifndef PRId32
    758   1.69       apb #define PRId32 "d"
    759   1.69       apb #endif
    760   1.69       apb #ifndef PRIi32
    761   1.69       apb #define PRIi32 "i"
    762   1.69       apb #endif
    763   1.69       apb #ifndef PRIo32
    764   1.69       apb #define PRIo32 "o"
    765   1.69       apb #endif
    766   1.69       apb #ifndef PRIu32
    767   1.69       apb #define PRIu32 "u"
    768   1.69       apb #endif
    769   1.69       apb #ifndef PRIx32
    770   1.69       apb #define PRIx32 "x"
    771   1.69       apb #endif
    772   1.69       apb #ifndef PRIX32
    773   1.69       apb #define PRIX32 "X"
    774   1.69       apb #endif
    775   1.78       apb #ifndef SCNd32
    776   1.78       apb #define SCNd32 "d"
    777   1.78       apb #endif
    778   1.78       apb #ifndef SCNi32
    779   1.78       apb #define SCNi32 "i"
    780   1.78       apb #endif
    781   1.78       apb #ifndef SCNo32
    782   1.78       apb #define SCNo32 "o"
    783   1.78       apb #endif
    784   1.78       apb #ifndef SCNu32
    785   1.78       apb #define SCNu32 "u"
    786   1.78       apb #endif
    787   1.78       apb #ifndef SCNx32
    788   1.78       apb #define SCNx32 "x"
    789   1.78       apb #endif
    790   1.78       apb #ifndef SCNX32
    791   1.78       apb #define SCNX32 "X"
    792   1.78       apb #endif
    793   1.69       apb #endif					/* int is a 32-bit type */
    794   1.70       apb #if ULONG_MAX == 0xffffffffU		/* long is a 32-bit type */
    795   1.69       apb #ifndef PRId32
    796   1.69       apb #define PRId32 "ld"
    797   1.69       apb #endif
    798   1.69       apb #ifndef PRIi32
    799   1.69       apb #define PRIi32 "li"
    800   1.69       apb #endif
    801   1.69       apb #ifndef PRIo32
    802   1.69       apb #define PRIo32 "lo"
    803   1.69       apb #endif
    804   1.69       apb #ifndef PRIu32
    805   1.69       apb #define PRIu32 "lu"
    806   1.69       apb #endif
    807   1.69       apb #ifndef PRIx32
    808   1.69       apb #define PRIx32 "lx"
    809   1.69       apb #endif
    810   1.69       apb #ifndef PRIX32
    811   1.69       apb #define PRIX32 "lX"
    812   1.69       apb #endif
    813   1.78       apb #ifndef SCNd32
    814   1.78       apb #define SCNd32 "ld"
    815   1.78       apb #endif
    816   1.78       apb #ifndef SCNi32
    817   1.78       apb #define SCNi32 "li"
    818   1.78       apb #endif
    819   1.78       apb #ifndef SCNo32
    820   1.78       apb #define SCNo32 "lo"
    821   1.78       apb #endif
    822   1.78       apb #ifndef SCNu32
    823   1.78       apb #define SCNu32 "lu"
    824   1.78       apb #endif
    825   1.78       apb #ifndef SCNx32
    826   1.78       apb #define SCNx32 "lx"
    827   1.78       apb #endif
    828   1.78       apb #ifndef SCNX32
    829   1.78       apb #define SCNX32 "lX"
    830   1.78       apb #endif
    831   1.69       apb #endif					/* long is a 32-bit type */
    832   1.69       apb #if ! (defined(PRId32) && defined(PRIi32) && defined(PRIo32) && \
    833   1.69       apb 	defined(PRIu32) && defined(PRIx32) && defined(PRIX32))
    834   1.69       apb #error "Don't know how to define PRI[diouxX]32"
    835   1.69       apb #endif
    836   1.78       apb #if ! (defined(SCNd32) && defined(SCNi32) && defined(SCNo32) && \
    837   1.78       apb 	defined(SCNu32) && defined(SCNx32) && defined(SCNX32))
    838   1.78       apb #error "Don't know how to define SCN[diouxX]32"
    839   1.78       apb #endif
    840   1.69       apb 
    841   1.70       apb #if ULONG_MAX == 0xffffffffffffffffU	/* long is a 64-bit type */
    842   1.69       apb #ifndef PRId64
    843   1.69       apb #define PRId64 "ld"
    844   1.69       apb #endif
    845   1.69       apb #ifndef PRIi64
    846   1.69       apb #define PRIi64 "li"
    847   1.69       apb #endif
    848   1.69       apb #ifndef PRIo64
    849   1.69       apb #define PRIo64 "lo"
    850   1.69       apb #endif
    851   1.69       apb #ifndef PRIu64
    852   1.69       apb #define PRIu64 "lu"
    853   1.69       apb #endif
    854   1.69       apb #ifndef PRIx64
    855   1.69       apb #define PRIx64 "lx"
    856   1.69       apb #endif
    857   1.69       apb #ifndef PRIX64
    858   1.69       apb #define PRIX64 "lX"
    859   1.69       apb #endif
    860   1.78       apb #ifndef SCNd64
    861   1.78       apb #define SCNd64 "ld"
    862   1.78       apb #endif
    863   1.78       apb #ifndef SCNi64
    864   1.78       apb #define SCNi64 "li"
    865   1.78       apb #endif
    866   1.78       apb #ifndef SCNo64
    867   1.78       apb #define SCNo64 "lo"
    868   1.78       apb #endif
    869   1.78       apb #ifndef SCNu64
    870   1.78       apb #define SCNu64 "lu"
    871   1.78       apb #endif
    872   1.78       apb #ifndef SCNx64
    873   1.78       apb #define SCNx64 "lx"
    874   1.78       apb #endif
    875   1.78       apb #ifndef SCNX64
    876   1.78       apb #define SCNX64 "lX"
    877   1.78       apb #endif
    878   1.69       apb #endif					/* long is a 64-bit type */
    879   1.70       apb #if ULLONG_MAX == 0xffffffffffffffffU	/* long long is a 64-bit type */
    880   1.69       apb #ifndef PRId64
    881   1.69       apb #define PRId64 "lld"
    882   1.69       apb #endif
    883   1.69       apb #ifndef PRIi64
    884   1.69       apb #define PRIi64 "lli"
    885   1.69       apb #endif
    886   1.69       apb #ifndef PRIo64
    887   1.69       apb #define PRIo64 "llo"
    888   1.69       apb #endif
    889   1.69       apb #ifndef PRIu64
    890   1.69       apb #define PRIu64 "llu"
    891   1.69       apb #endif
    892   1.69       apb #ifndef PRIx64
    893   1.69       apb #define PRIx64 "llx"
    894   1.69       apb #endif
    895   1.69       apb #ifndef PRIX64
    896   1.69       apb #define PRIX64 "llX"
    897   1.69       apb #endif
    898   1.78       apb #ifndef SCNd64
    899   1.78       apb #define SCNd64 "lld"
    900   1.78       apb #endif
    901   1.78       apb #ifndef SCNi64
    902   1.78       apb #define SCNi64 "lli"
    903   1.78       apb #endif
    904   1.78       apb #ifndef SCNo64
    905   1.78       apb #define SCNo64 "llo"
    906   1.78       apb #endif
    907   1.78       apb #ifndef SCNu64
    908   1.78       apb #define SCNu64 "llu"
    909   1.78       apb #endif
    910   1.78       apb #ifndef SCNx64
    911   1.78       apb #define SCNx64 "llx"
    912   1.78       apb #endif
    913   1.78       apb #ifndef SCNX64
    914   1.78       apb #define SCNX64 "llX"
    915   1.78       apb #endif
    916   1.69       apb #endif					/* long long is a 64-bit type */
    917   1.69       apb #if ! (defined(PRId64) && defined(PRIi64) && defined(PRIo64) && \
    918   1.69       apb 	defined(PRIu64) && defined(PRIx64) && defined(PRIX64))
    919   1.69       apb #error "Don't know how to define PRI[diouxX]64"
    920   1.69       apb #endif
    921   1.78       apb #if ! (defined(SCNd64) && defined(SCNi64) && defined(SCNo64) && \
    922   1.78       apb 	defined(SCNu64) && defined(SCNx64) && defined(SCNX64))
    923   1.78       apb #error "Don't know how to define SCN[diouxX]64"
    924   1.78       apb #endif
    925   1.69       apb 
    926    1.8     bjh21 /* <limits.h> */
    927    1.4        tv 
    928    1.4        tv #ifndef UID_MAX
    929    1.4        tv #define UID_MAX 32767
    930    1.4        tv #endif
    931    1.4        tv #ifndef GID_MAX
    932    1.4        tv #define GID_MAX UID_MAX
    933    1.4        tv #endif
    934    1.4        tv 
    935    1.4        tv #ifndef UQUAD_MAX
    936    1.4        tv #define UQUAD_MAX ((u_quad_t)-1)
    937    1.4        tv #endif
    938    1.4        tv #ifndef QUAD_MAX
    939    1.4        tv #define QUAD_MAX ((quad_t)(UQUAD_MAX >> 1))
    940    1.4        tv #endif
    941    1.4        tv #ifndef QUAD_MIN
    942    1.4        tv #define QUAD_MIN ((quad_t)(~QUAD_MAX))
    943    1.4        tv #endif
    944    1.4        tv #ifndef ULLONG_MAX
    945    1.4        tv #define ULLONG_MAX ((unsigned long long)-1)
    946    1.4        tv #endif
    947    1.4        tv #ifndef LLONG_MAX
    948    1.4        tv #define LLONG_MAX ((long long)(ULLONG_MAX >> 1))
    949    1.4        tv #endif
    950    1.4        tv #ifndef LLONG_MIN
    951    1.4        tv #define LLONG_MIN ((long long)(~LLONG_MAX))
    952    1.3        tv #endif
    953    1.1   thorpej 
    954  1.103     pooka #ifndef MAXPATHLEN
    955  1.103     pooka #define MAXPATHLEN	4096
    956  1.103     pooka #endif
    957  1.103     pooka #ifndef PATH_MAX
    958  1.103     pooka #define PATH_MAX	MAXPATHLEN
    959  1.103     pooka #endif
    960  1.103     pooka 
    961    1.4        tv /* <paths.h> */
    962    1.4        tv 
    963   1.54       apb /* The host's _PATH_BSHELL might be broken, so override it. */
    964   1.54       apb #undef _PATH_BSHELL
    965   1.15     bjh21 #define _PATH_BSHELL PATH_BSHELL
    966    1.1   thorpej #ifndef _PATH_DEFPATH
    967    1.1   thorpej #define _PATH_DEFPATH "/usr/bin:/bin:/usr/local/bin"
    968    1.1   thorpej #endif
    969    1.1   thorpej #ifndef _PATH_DEV
    970    1.1   thorpej #define _PATH_DEV "/dev/"
    971    1.1   thorpej #endif
    972    1.1   thorpej #ifndef _PATH_DEVNULL
    973    1.1   thorpej #define _PATH_DEVNULL _PATH_DEV "null"
    974    1.1   thorpej #endif
    975    1.1   thorpej #ifndef _PATH_TMP
    976    1.1   thorpej #define _PATH_TMP "/tmp/"
    977   1.22  christos #endif
    978   1.22  christos #ifndef _PATH_DEFTAPE
    979   1.22  christos #define _PATH_DEFTAPE "/dev/nrst0"
    980    1.1   thorpej #endif
    981   1.46      tron #ifndef _PATH_VI
    982   1.46      tron #define _PATH_VI "/usr/bin/vi"
    983   1.46      tron #endif
    984    1.1   thorpej 
    985   1.13     bjh21 /* <stdint.h> */
    986   1.30       uwe 
    987   1.30       uwe #if !defined(SIZE_MAX) && defined(SIZE_T_MAX)
    988   1.30       uwe #define SIZE_MAX SIZE_T_MAX
    989   1.30       uwe #endif
    990   1.13     bjh21 
    991   1.47       uwe #ifndef UINT8_MAX
    992   1.47       uwe #define UINT8_MAX 0xffU
    993   1.47       uwe #endif
    994   1.47       uwe 
    995   1.47       uwe #ifndef UINT16_MAX
    996   1.47       uwe #define UINT16_MAX 0xffffU
    997   1.47       uwe #endif
    998   1.47       uwe 
    999   1.13     bjh21 #ifndef UINT32_MAX
   1000   1.13     bjh21 #define UINT32_MAX 0xffffffffU
   1001   1.14     bjh21 #endif
   1002   1.14     bjh21 
   1003   1.14     bjh21 /* <stdlib.h> */
   1004   1.14     bjh21 
   1005   1.14     bjh21 #ifndef __GNUC__
   1006   1.14     bjh21 # if HAVE_ALLOCA_H
   1007   1.14     bjh21 #  include <alloca.h>
   1008   1.14     bjh21 # else
   1009   1.14     bjh21 #  ifndef alloca /* predefined by HP cc +Olibcalls */
   1010   1.14     bjh21 char *alloca ();
   1011   1.14     bjh21 #  endif
   1012   1.14     bjh21 # endif
   1013   1.13     bjh21 #endif
   1014   1.25       uwe 
   1015   1.25       uwe /* avoid prototype conflicts with host */
   1016   1.25       uwe #define cgetcap __nbcompat_cgetcap
   1017   1.25       uwe #define cgetclose __nbcompat_cgetclose
   1018   1.25       uwe #define cgetent __nbcompat_cgetent
   1019   1.25       uwe #define cgetfirst __nbcompat_cgetfirst
   1020   1.25       uwe #define cgetmatch __nbcompat_cgetmatch
   1021   1.25       uwe #define cgetnext __nbcompat_cgetnext
   1022   1.25       uwe #define cgetnum __nbcompat_cgetnum
   1023   1.25       uwe #define cgetset __nbcompat_cgetset
   1024   1.25       uwe #define cgetstr __nbcompat_cgetstr
   1025   1.25       uwe #define cgetustr __nbcompat_cgetustr
   1026   1.25       uwe 
   1027   1.25       uwe char	*cgetcap(char *, const char *, int);
   1028   1.25       uwe int	 cgetclose(void);
   1029   1.33  christos int	 cgetent(char **, const char * const *, const char *);
   1030   1.33  christos int	 cgetfirst(char **, const char * const *);
   1031   1.25       uwe int	 cgetmatch(const char *, const char *);
   1032   1.33  christos int	 cgetnext(char **, const char * const *);
   1033   1.25       uwe int	 cgetnum(char *, const char *, long *);
   1034   1.25       uwe int	 cgetset(const char *);
   1035   1.25       uwe int	 cgetstr(char *, const char *, char **);
   1036   1.25       uwe int	 cgetustr(char *, const char *, char **);
   1037   1.13     bjh21 
   1038    1.9     bjh21 /* <sys/endian.h> */
   1039    1.9     bjh21 
   1040    1.9     bjh21 #if WORDS_BIGENDIAN
   1041   1.49    dogcow #if !HAVE_DECL_HTOBE16
   1042    1.9     bjh21 #define htobe16(x)	(x)
   1043   1.39       jmc #endif
   1044   1.49    dogcow #if !HAVE_DECL_HTOBE32
   1045    1.9     bjh21 #define htobe32(x)	(x)
   1046   1.39       jmc #endif
   1047   1.49    dogcow #if !HAVE_DECL_HTOBE64
   1048    1.9     bjh21 #define htobe64(x)	(x)
   1049   1.39       jmc #endif
   1050   1.49    dogcow #if !HAVE_DECL_HTOLE16
   1051    1.9     bjh21 #define htole16(x)	bswap16((u_int16_t)(x))
   1052   1.39       jmc #endif
   1053   1.49    dogcow #if !HAVE_DECL_HTOLE32
   1054    1.9     bjh21 #define htole32(x)	bswap32((u_int32_t)(x))
   1055   1.39       jmc #endif
   1056   1.49    dogcow #if !HAVE_DECL_HTOLE64
   1057    1.9     bjh21 #define htole64(x)	bswap64((u_int64_t)(x))
   1058   1.39       jmc #endif
   1059    1.9     bjh21 #else
   1060   1.49    dogcow #if !HAVE_DECL_HTOBE16
   1061    1.9     bjh21 #define htobe16(x)	bswap16((u_int16_t)(x))
   1062   1.39       jmc #endif
   1063   1.49    dogcow #if !HAVE_DECL_HTOBE32
   1064    1.9     bjh21 #define htobe32(x)	bswap32((u_int32_t)(x))
   1065   1.39       jmc #endif
   1066   1.49    dogcow #if !HAVE_DECL_HTOBE64
   1067    1.9     bjh21 #define htobe64(x)	bswap64((u_int64_t)(x))
   1068   1.39       jmc #endif
   1069   1.49    dogcow #if !HAVE_DECL_HTOLE16
   1070    1.9     bjh21 #define htole16(x)	(x)
   1071   1.39       jmc #endif
   1072   1.49    dogcow #if !HAVE_DECL_HTOLE32
   1073    1.9     bjh21 #define htole32(x)	(x)
   1074   1.39       jmc #endif
   1075   1.49    dogcow #if !HAVE_DECL_HTOLE64
   1076    1.9     bjh21 #define htole64(x)	(x)
   1077    1.9     bjh21 #endif
   1078   1.39       jmc #endif
   1079   1.49    dogcow #if !HAVE_DECL_BE16TOH
   1080    1.9     bjh21 #define be16toh(x)	htobe16(x)
   1081   1.39       jmc #endif
   1082   1.49    dogcow #if !HAVE_DECL_BE32TOH
   1083    1.9     bjh21 #define be32toh(x)	htobe32(x)
   1084   1.39       jmc #endif
   1085   1.49    dogcow #if !HAVE_DECL_BE64TOH
   1086    1.9     bjh21 #define be64toh(x)	htobe64(x)
   1087   1.39       jmc #endif
   1088   1.49    dogcow #if !HAVE_DECL_LE16TOH
   1089    1.9     bjh21 #define le16toh(x)	htole16(x)
   1090   1.39       jmc #endif
   1091   1.49    dogcow #if !HAVE_DECL_LE32TOH
   1092    1.9     bjh21 #define le32toh(x)	htole32(x)
   1093   1.39       jmc #endif
   1094   1.49    dogcow #if !HAVE_DECL_LE64TOH
   1095    1.9     bjh21 #define le64toh(x)	htole64(x)
   1096    1.1   thorpej #endif
   1097    1.1   thorpej 
   1098   1.60       apb #define __GEN_ENDIAN_ENC(bits, endian) \
   1099   1.60       apb static void \
   1100   1.60       apb endian ## bits ## enc(void *dst, uint ## bits ## _t u) \
   1101   1.60       apb { \
   1102   1.60       apb 	u = hto ## endian ## bits (u); \
   1103   1.60       apb 	memcpy(dst, &u, sizeof(u)); \
   1104   1.60       apb }
   1105   1.60       apb #if !HAVE_DECL_BE16ENC
   1106   1.60       apb __GEN_ENDIAN_ENC(16, be)
   1107   1.60       apb #endif
   1108   1.60       apb #if !HAVE_DECL_BE32ENC
   1109   1.60       apb __GEN_ENDIAN_ENC(32, be)
   1110   1.60       apb #endif
   1111   1.60       apb #if !HAVE_DECL_BE64ENC
   1112   1.60       apb __GEN_ENDIAN_ENC(64, be)
   1113   1.60       apb #endif
   1114   1.60       apb #if !HAVE_DECL_LE16ENC
   1115   1.60       apb __GEN_ENDIAN_ENC(16, le)
   1116   1.60       apb #endif
   1117   1.60       apb #if !HAVE_DECL_LE32ENC
   1118   1.60       apb __GEN_ENDIAN_ENC(32, le)
   1119   1.60       apb #endif
   1120   1.60       apb #if !HAVE_DECL_LE64ENC
   1121   1.60       apb __GEN_ENDIAN_ENC(64, le)
   1122   1.60       apb #endif
   1123   1.60       apb #undef __GEN_ENDIAN_ENC
   1124   1.60       apb 
   1125   1.60       apb #define __GEN_ENDIAN_DEC(bits, endian) \
   1126   1.60       apb static uint ## bits ## _t \
   1127   1.60       apb endian ## bits ## dec(const void *buf) \
   1128   1.60       apb { \
   1129   1.60       apb 	uint ## bits ## _t u; \
   1130   1.60       apb 	memcpy(&u, buf, sizeof(u)); \
   1131   1.60       apb 	return endian ## bits ## toh (u); \
   1132   1.60       apb }
   1133   1.60       apb #if !HAVE_DECL_BE16DEC
   1134   1.60       apb __GEN_ENDIAN_DEC(16, be)
   1135   1.60       apb #endif
   1136   1.60       apb #if !HAVE_DECL_BE32DEC
   1137   1.60       apb __GEN_ENDIAN_DEC(32, be)
   1138   1.60       apb #endif
   1139   1.60       apb #if !HAVE_DECL_BE64DEC
   1140   1.60       apb __GEN_ENDIAN_DEC(64, be)
   1141   1.60       apb #endif
   1142   1.60       apb #if !HAVE_DECL_LE16DEC
   1143   1.60       apb __GEN_ENDIAN_DEC(16, le)
   1144   1.60       apb #endif
   1145   1.60       apb #if !HAVE_DECL_LE32DEC
   1146   1.60       apb __GEN_ENDIAN_DEC(32, le)
   1147   1.60       apb #endif
   1148   1.60       apb #if !HAVE_DECL_LE64DEC
   1149   1.60       apb __GEN_ENDIAN_DEC(64, le)
   1150   1.60       apb #endif
   1151   1.60       apb #undef __GEN_ENDIAN_DEC
   1152   1.60       apb 
   1153    1.4        tv /* <sys/mman.h> */
   1154    1.3        tv 
   1155    1.3        tv #ifndef MAP_FILE
   1156    1.3        tv #define MAP_FILE 0
   1157   1.19     lukem #endif
   1158   1.19     lukem 
   1159   1.19     lukem /* HP-UX has MAP_ANONYMOUS but not MAP_ANON */
   1160   1.19     lukem #ifndef MAP_ANON
   1161   1.19     lukem #ifdef MAP_ANONYMOUS
   1162   1.19     lukem #define MAP_ANON MAP_ANONYMOUS
   1163   1.19     lukem #endif
   1164    1.3        tv #endif
   1165    1.3        tv 
   1166    1.4        tv /* <sys/param.h> */
   1167    1.4        tv 
   1168    1.4        tv #undef BIG_ENDIAN
   1169    1.4        tv #undef LITTLE_ENDIAN
   1170   1.81       jdc #undef PDP_ENDIAN
   1171    1.4        tv #define BIG_ENDIAN 4321
   1172    1.4        tv #define LITTLE_ENDIAN 1234
   1173   1.81       jdc #define PDP_ENDIAN 3412
   1174    1.4        tv 
   1175    1.4        tv #undef BYTE_ORDER
   1176    1.4        tv #if WORDS_BIGENDIAN
   1177    1.4        tv #define BYTE_ORDER BIG_ENDIAN
   1178    1.4        tv #else
   1179    1.4        tv #define BYTE_ORDER LITTLE_ENDIAN
   1180    1.4        tv #endif
   1181    1.4        tv 
   1182   1.83   tsutsui /* all references of DEV_BSIZE in tools are for NetBSD's file images */
   1183   1.83   tsutsui #undef DEV_BSIZE
   1184    1.7        tv #define DEV_BSIZE (1 << 9)
   1185    1.7        tv 
   1186    1.4        tv #undef MIN
   1187    1.4        tv #undef MAX
   1188    1.4        tv #define MIN(a,b) ((a) < (b) ? (a) : (b))
   1189    1.4        tv #define MAX(a,b) ((a) > (b) ? (a) : (b))
   1190    1.4        tv 
   1191    1.1   thorpej #ifndef MAXBSIZE
   1192    1.1   thorpej #define MAXBSIZE (64 * 1024)
   1193    1.1   thorpej #endif
   1194    1.4        tv #ifndef MAXFRAG
   1195    1.4        tv #define MAXFRAG 8
   1196    1.1   thorpej #endif
   1197    1.4        tv #ifndef MAXPHYS
   1198    1.4        tv #define MAXPHYS (64 * 1024)
   1199    1.3        tv #endif
   1200  1.103     pooka #ifndef MAXHOSTNAMELEN
   1201  1.103     pooka #define MAXHOSTNAMELEN	256
   1202  1.103     pooka #endif
   1203    1.4        tv 
   1204    1.6        tv /* XXX needed by makefs; this should be done in a better way */
   1205    1.6        tv #undef btodb
   1206    1.6        tv #define btodb(x) ((x) << 9)
   1207    1.6        tv 
   1208    1.6        tv #undef setbit
   1209    1.6        tv #undef clrbit
   1210    1.6        tv #undef isset
   1211    1.6        tv #undef isclr
   1212    1.6        tv #define	setbit(a,i)	((a)[(i)/NBBY] |= 1<<((i)%NBBY))
   1213    1.6        tv #define	clrbit(a,i)	((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
   1214    1.6        tv #define	isset(a,i)	((a)[(i)/NBBY] & (1<<((i)%NBBY)))
   1215    1.6        tv #define	isclr(a,i)	(((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
   1216    1.6        tv 
   1217    1.4        tv #ifndef powerof2
   1218    1.4        tv #define powerof2(x) ((((x)-1)&(x))==0)
   1219    1.3        tv #endif
   1220    1.7        tv 
   1221    1.7        tv #undef roundup
   1222    1.7        tv #define roundup(x, y)	((((x)+((y)-1))/(y))*(y))
   1223    1.3        tv 
   1224    1.4        tv /* <sys/stat.h> */
   1225    1.4        tv 
   1226    1.4        tv #ifndef ALLPERMS
   1227    1.4        tv #define ALLPERMS (S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO)
   1228    1.4        tv #endif
   1229    1.4        tv #ifndef DEFFILEMODE
   1230    1.4        tv #define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
   1231    1.4        tv #endif
   1232    1.3        tv #ifndef S_ISTXT
   1233    1.3        tv #ifdef S_ISVTX
   1234    1.3        tv #define S_ISTXT S_ISVTX
   1235    1.3        tv #else
   1236    1.3        tv #define S_ISTXT 0
   1237    1.3        tv #endif
   1238    1.6        tv #endif
   1239    1.6        tv 
   1240   1.39       jmc /* Protected by _NETBSD_SOURCE otherwise. */
   1241   1.39       jmc #if HAVE_STRUCT_STAT_ST_FLAGS && defined(__NetBSD__)
   1242   1.39       jmc #define UF_SETTABLE     0x0000ffff
   1243   1.39       jmc #define UF_NODUMP       0x00000001
   1244   1.39       jmc #define UF_IMMUTABLE    0x00000002
   1245   1.39       jmc #define UF_APPEND       0x00000004
   1246   1.39       jmc #define UF_OPAQUE       0x00000008
   1247   1.39       jmc #define SF_SETTABLE     0xffff0000
   1248   1.39       jmc #define SF_ARCHIVED     0x00010000
   1249   1.39       jmc #define SF_IMMUTABLE    0x00020000
   1250   1.39       jmc #define SF_APPEND       0x00040000
   1251   1.39       jmc #endif
   1252   1.39       jmc 
   1253    1.6        tv /* <sys/syslimits.h> */
   1254    1.6        tv 
   1255    1.6        tv #ifndef LINE_MAX
   1256    1.6        tv #define LINE_MAX 2048
   1257    1.4        tv #endif
   1258    1.4        tv 
   1259    1.4        tv /* <sys/time.h> */
   1260    1.4        tv 
   1261    1.4        tv #ifndef timercmp
   1262    1.4        tv #define	timercmp(tvp, uvp, cmp)						\
   1263    1.4        tv 	(((tvp)->tv_sec == (uvp)->tv_sec) ?				\
   1264    1.4        tv 	    ((tvp)->tv_usec cmp (uvp)->tv_usec) :			\
   1265    1.4        tv 	    ((tvp)->tv_sec cmp (uvp)->tv_sec))
   1266    1.4        tv #endif
   1267    1.4        tv #ifndef timeradd
   1268    1.4        tv #define	timeradd(tvp, uvp, vvp)						\
   1269    1.4        tv 	do {								\
   1270    1.4        tv 		(vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec;		\
   1271    1.4        tv 		(vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec;	\
   1272    1.4        tv 		if ((vvp)->tv_usec >= 1000000) {			\
   1273    1.4        tv 			(vvp)->tv_sec++;				\
   1274    1.4        tv 			(vvp)->tv_usec -= 1000000;			\
   1275    1.4        tv 		}							\
   1276    1.4        tv 	} while (/* CONSTCOND */ 0)
   1277    1.4        tv #endif
   1278    1.4        tv #ifndef timersub
   1279    1.4        tv #define	timersub(tvp, uvp, vvp)						\
   1280    1.4        tv 	do {								\
   1281    1.4        tv 		(vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec;		\
   1282    1.4        tv 		(vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec;	\
   1283    1.4        tv 		if ((vvp)->tv_usec < 0) {				\
   1284    1.4        tv 			(vvp)->tv_sec--;				\
   1285    1.4        tv 			(vvp)->tv_usec += 1000000;			\
   1286    1.4        tv 		}							\
   1287    1.4        tv 	} while (/* CONSTCOND */ 0)
   1288    1.4        tv #endif
   1289    1.4        tv 
   1290    1.4        tv /* <sys/types.h> */
   1291    1.4        tv 
   1292   1.39       jmc #ifdef major
   1293   1.39       jmc #undef major
   1294   1.39       jmc #endif
   1295   1.39       jmc #define major(x)        ((int32_t)((((x) & 0x000fff00) >>  8)))
   1296   1.39       jmc 
   1297   1.39       jmc #ifdef minor
   1298   1.39       jmc #undef minor
   1299   1.39       jmc #endif
   1300   1.39       jmc #define minor(x)        ((int32_t)((((x) & 0xfff00000) >> 12) | \
   1301   1.39       jmc                                    (((x) & 0x000000ff) >>  0)))
   1302   1.39       jmc #ifdef makedev
   1303   1.39       jmc #undef makedev
   1304   1.39       jmc #endif
   1305   1.39       jmc #define makedev(x,y)    ((dev_t)((((x) <<  8) & 0x000fff00) | \
   1306   1.39       jmc 			(((y) << 12) & 0xfff00000) | \
   1307   1.39       jmc 			(((y) <<  0) & 0x000000ff)))
   1308   1.39       jmc #ifndef NBBY
   1309   1.39       jmc #define NBBY 8
   1310   1.39       jmc #endif
   1311   1.39       jmc 
   1312    1.4        tv #if !HAVE_U_QUAD_T
   1313    1.4        tv /* #define, not typedef, as quad_t exists as a struct on some systems */
   1314    1.4        tv #define quad_t long long
   1315    1.4        tv #define u_quad_t unsigned long long
   1316   1.20     lukem #define strtoq strtoll
   1317    1.4        tv #define strtouq strtoull
   1318    1.1   thorpej #endif
   1319    1.1   thorpej 
   1320   1.40       jmc /* Has quad_t but these prototypes don't get pulled into scope. w/o we lose */
   1321   1.40       jmc #ifdef __NetBSD__
   1322   1.84     joerg quad_t   strtoq(const char *, char **, int);
   1323   1.84     joerg u_quad_t strtouq(const char *, char **, int);
   1324   1.40       jmc #endif
   1325   1.40       jmc 
   1326    1.1   thorpej #endif	/* !__NETBSD_COMPAT_DEFS_H__ */
   1327