blob: 96611880e1933109f4bbbe8cff81df2e7f471bd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $Cambridge: exim/src/OS/os.h-QNX,v 1.1 2004/10/06 15:07:39 ph10 Exp $ */
/* Exim: OS-specific C header file for QNX */
/* Modified for QNX 6.2.0 with diffs from Samuli Tuomola. */
#include <sys/select.h>
/* This include is wrapped in an ifdef so as to be skipped for QNXRTP, which
doesn't have/need this header file. From Karsten P. Hoffmann. */
#ifdef __QNX__
#include <unix.h>
#endif
#undef HAVE_STATFS
#undef HAVE_VFS_H
#undef HAVE_SYS_MOUNT_H
#define NO_SYSEXITS
extern int h_errno;
/* End */
|