summaryrefslogtreecommitdiff
path: root/mkspecs/sco-cc/qplatformdefs.h
Unidiff
Diffstat (limited to 'mkspecs/sco-cc/qplatformdefs.h') (more/less context) (ignore whitespace changes)
-rw-r--r--mkspecs/sco-cc/qplatformdefs.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/mkspecs/sco-cc/qplatformdefs.h b/mkspecs/sco-cc/qplatformdefs.h
index 4201ed6..06af247 100644
--- a/mkspecs/sco-cc/qplatformdefs.h
+++ b/mkspecs/sco-cc/qplatformdefs.h
@@ -1,45 +1,41 @@
1#ifndef QPLATFORMDEFS_H 1#ifndef QPLATFORMDEFS_H
2#define QPLATFORMDEFS_H 2#define QPLATFORMDEFS_H
3 3
4// Get Qt defines/settings 4// Get Qt defines/settings
5 5
6#include "qglobal.h" 6#include "qglobal.h"
7 7
8// Set any POSIX/XOPEN defines at the top of this file to turn on specific APIs 8// Set any POSIX/XOPEN defines at the top of this file to turn on specific APIs
9 9
10// This is to have PATH_MAX defined in <limits.h>
11#ifndef _IBCS2
12# define _IBCS2
13#endif
14
15#include <unistd.h> 10#include <unistd.h>
16 11
17 12
18// We are hot - unistd.h should have turned on the specific APIs we requested 13// We are hot - unistd.h should have turned on the specific APIs we requested
19 14
20 15
21#ifdef QT_THREAD_SUPPORT 16#ifdef QT_THREAD_SUPPORT
22#include <pthread.h> 17#include <pthread.h>
23#endif 18#endif
24 19
25#include <dirent.h> 20#include <dirent.h>
26#include <fcntl.h> 21#include <fcntl.h>
27#include <grp.h> 22#include <grp.h>
28#include <pwd.h> 23#include <pwd.h>
29#include <signal.h> 24#include <signal.h>
30#include <dlfcn.h> 25#include <dlfcn.h>
31 26
32#include <sys/types.h> 27#include <sys/types.h>
33#include <sys/ioctl.h> 28#include <sys/ioctl.h>
29#include <sys/filio.h>
34#include <sys/ipc.h> 30#include <sys/ipc.h>
35#include <sys/time.h> 31#include <sys/time.h>
36#include <sys/shm.h> 32#include <sys/shm.h>
37#include <sys/socket.h> 33#include <sys/socket.h>
38#include <sys/stat.h> 34#include <sys/stat.h>
39#include <sys/wait.h> 35#include <sys/wait.h>
40 36
41// DNS header files are not fully covered by X/Open specifications. 37// DNS header files are not fully covered by X/Open specifications.
42// In particular nothing is said about res_* :/ 38// In particular nothing is said about res_* :/
43// On Unixware header files <netinet/in.h> and <arpa/nameser.h> are not 39// On Unixware header files <netinet/in.h> and <arpa/nameser.h> are not
44// included by <resolv.h>. Note that <arpa/nameser.h> must be included 40// included by <resolv.h>. Note that <arpa/nameser.h> must be included
45// before <resolv.h>. 41// before <resolv.h>.
@@ -71,19 +67,19 @@
71 #define QT_OPEN_RDONLY O_RDONLY 67 #define QT_OPEN_RDONLY O_RDONLY
72 #define QT_OPEN_WRONLY O_WRONLY 68 #define QT_OPEN_WRONLY O_WRONLY
73 #define QT_OPEN_RDWR O_RDWR 69 #define QT_OPEN_RDWR O_RDWR
74 #define QT_OPEN_CREAT O_CREAT 70 #define QT_OPEN_CREAT O_CREAT
75 #define QT_OPEN_TRUNC O_TRUNC 71 #define QT_OPEN_TRUNC O_TRUNC
76 #define QT_OPEN_APPEND O_APPEND 72 #define QT_OPEN_APPEND O_APPEND
77#endif 73#endif
78 74
79 #define QT_SIGNAL_RETTYPEvoid 75 #define QT_SIGNAL_RETTYPEvoid
80 #define QT_SIGNAL_ARGS int 76 #define QT_SIGNAL_ARGS int
81 #define QT_SIGNAL_IGNORESIG_IGN 77 #define QT_SIGNAL_IGNORESIG_IGN
82 78
83 #define QT_SOCKLEN_T int 79 #define QT_SOCKLEN_T size_t
84 80
85 #define QT_SNPRINTF ::snprintf 81 #define QT_SNPRINTF ::snprintf
86 #define QT_VSNPRINTF ::vsnprintf 82 #define QT_VSNPRINTF ::vsnprintf
87 83
88 84
89#endif // QPLATFORMDEFS_H 85#endif // QPLATFORMDEFS_H