4968587e65159fc23f12d4fc0b95fbc1c7392557
[srvx.git] / src / compat.h
1 #ifndef COMPAT_H
2 #define COMPAT_H
3
4 #include "config.h"
5
6 /* AIX's compiler requires this to be the first thing in the compiled
7  * files.  Yay for braindead compilers. */
8 #if defined(__GNUC__) && !defined(HAVE_ALLOCA_H)
9 # define alloca __builtin_alloca
10 #else
11 # if defined(HAVE_ALLOCA_H)
12 #  include <alloca.h>
13 # else
14 #  ifdef _AIX
15 #   pragma alloca
16 #  else
17 #   ifndef alloca
18 char *alloca();
19 #   endif
20 #  endif
21 # endif
22 #endif
23
24 /* These are ANSI C89 headers, so everybody should have them.  If
25  * they're missing, we probably don't care much about the platform.
26  * If we do, we can add an autoconf test and try to patch around;
27  * this is the right file for that, after all :)
28  */
29 #include <assert.h>
30 #include <ctype.h>
31 #include <errno.h>
32 #include <limits.h>
33 #include <setjmp.h>
34 #include <signal.h>
35 #include <stdarg.h>
36 #include <stddef.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40
41 #ifdef TIME_WITH_SYS_TIME
42 # include <sys/time.h>
43 # include <time.h>
44 #else
45 # ifdef HAVE_SYS_TIME_H
46 #  include <sys/time.h>
47 # else
48 #  include <time.h>
49 # endif
50 #endif
51
52 #ifdef HAVE_SYS_TYPES_H
53 #include <sys/types.h>
54 #endif
55
56 #ifdef HAVE_SYS_SOCKET_H
57 #include <sys/socket.h>
58 #endif
59
60 #ifdef HAVE_NETDB_H
61 #include <netdb.h>
62 #endif
63
64 #ifdef HAVE_WINSOCK2_H
65 /* Windows XP+ only -- older versions lack getaddrinfo() etc. */
66 # define _WIN32_WINNT 0x0501
67 # include <winsock2.h>
68 #endif
69
70 #ifdef HAVE_WS2TCPIP_H
71 # include <ws2tcpip.h>
72 #endif
73
74 #ifdef HAVE_UNISTD_H
75 #include <unistd.h>
76 #endif
77
78 #ifdef HAVE_VA_COPY
79 #define VA_COPY(DEST, SRC) va_copy(DEST, SRC)
80 #elif HAVE___VA_COPY
81 #define VA_COPY(DEST, SRC) __va_copy(DEST, SRC)
82 #else
83 #define VA_COPY(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof(DEST))
84 #endif
85
86 #ifndef HAVE_GETTIMEOFDAY
87 extern int gettimeofday(struct timeval * tv, struct timezone * tz);
88 #endif
89
90 #ifndef HAVE_MEMCPY
91 /* this should use size_t, but some systems don't define it */
92 extern void * memcpy(void * dest, void const * src, unsigned long n);
93 #endif
94
95 #ifndef HAVE_MEMSET
96 /* this should use size_t, but some systems don't define it */
97 extern void * memset(void * dest, int c, unsigned long n);
98 #endif
99
100 #ifndef HAVE_STRDUP
101 extern char * strdup(char const * str);
102 #endif
103
104 #ifndef HAVE_STRERROR
105 extern char const * strerror(int errornum);
106 #endif
107
108 #ifndef HAVE_STRUCT_ADDRINFO
109
110 struct addrinfo {
111     int ai_flags;
112     int ai_family;
113     int ai_socktype;
114     int ai_protocol;
115     size_t ai_addrlen;
116     struct sockaddr *ai_addr;
117     char *ai_canonname;
118     struct addrinfo *ai_next;
119 };
120
121 #define AI_PASSIVE 1
122 #define AI_CANONNAME 2
123 #define AI_NUMERICHOST 4
124
125 #endif /* !defined(HAVE_STRUCT_ADDRINFO) */
126
127 #ifndef HAVE_GETADDRINFO
128
129 int getaddrinfo(const char *node, const char *service, const struct addrinfo *hints, struct addrinfo **res);
130 int getnameinfo(const struct sockaddr *sa, socklen_t salen, char *host, size_t hostlen, char *serv, size_t servlen, int flags);
131 void freeaddrinfo(struct addrinfo *res);
132
133 #endif
134
135 #endif /* COMPAT_H */