blob: 234f51c18a830ae3e706d939394f0a95d316bf2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $Cambridge: exim/src/OS/os.h-NetBSD,v 1.5 2009/10/20 12:39:47 nm4 Exp $ */
/* Exim: OS-specific C header file for NetBSD */
#define HAVE_BSD_GETLOADAVG
#define HAVE_GETIFADDRS
#define HAVE_MMAP
#define HAVE_SYS_MOUNT_H
#define SIOCGIFCONF_GIVES_ADDR
typedef struct flock flock_t;
#define os_strsignal strsignal
#define OS_STRSIGNAL
#include <sys/param.h>
#if __NetBSD_Version__ >= 299000900
#define HAVE_SYS_STATVFS_H
#endif
/* End */
|