Fix too-often retry bug after 4xx with more hosts than hosts_max_retry.
[exim.git] / src / OS / os.h-mips
CommitLineData
61ec970d
PH
1/* $Cambridge: exim/src/OS/os.h-mips,v 1.1 2004/10/06 15:07:39 ph10 Exp $ */
2
3/* Exim: OS-specific C header file for RiscOS4bsd */
4
5#define LOAD_AVG_NEEDS_ROOT
6#define HAVE_DEV_KMEM
7#define LOAD_AVG_TYPE long
8#define LOAD_AVG_SYMBOL "_avenrun"
9#define KERNEL_PATH "/unix"
10
11#define HAVE_MMAP
12#define HAVE_SYS_VFS_H
13
14#define F_FREESP O_TRUNC
15#define EXIT_FAILURE 1
16#define EXIT_SUCCESS 0
17typedef struct flock flock_t;
18
19#define STRERROR_FROM_ERRLIST
20#define memmove(a, b, c) bcopy(b, a, c)
21
22extern char *strerror(int);
23extern int sys_nerr;
24extern char *sys_errlist[];
25
26/* End */