tidying
[exim.git] / src / OS / unsupported / os.h-QNX
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
7 doesn'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
19 extern int h_errno;
20
21 /* default is non-const */
22 #define ICONV_ARG2_TYPE const char **
23
24 /* End */