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