Docs: cuttthrough logging
[exim.git] / src / OS / os.h-QNX
CommitLineData
61ec970d
PH
1/* Exim: OS-specific C header file for QNX */
2/* Modified for QNX 6.2.0 with diffs from Samuli Tuomola. */
3
4#include <sys/select.h>
5
6/* This include is wrapped in an ifdef so as to be skipped for QNXRTP, which
7doesn't have/need this header file. From Karsten P. Hoffmann. */
8
9#ifdef __QNX__
10#include <unix.h>
11#endif
12
13#undef HAVE_STATFS
14#undef HAVE_VFS_H
15#undef HAVE_SYS_MOUNT_H
16
17#define NO_SYSEXITS
18
19extern int h_errno;
20
9c19b270
JH
21/* default is non-const */
22#define ICONV_ARG2_TYPE const char **
23
61ec970d 24/* End */