1 @BOTTOM@
2 /* XXX - for strl* definitions below */
3 #include <sys/types.h>
4 
5 #ifdef HAVE_INTTYPES_H
6 #include <inttypes.h>
7 #endif
8 
9 #ifdef HAVE_STDINT_H
10 #include <stdint.h>
11 #endif
12 
13 #ifdef HAVE_WINDOWS_H
14 #include <windows.h>
15 #endif
16 
17 #ifdef HAVE_WINSOCK_H
18 #include <winsock.h>
19 #endif
20 
21 #ifndef HAVE_GETOPT
22 int	getopt(int argc, char * const *argv, const char *optstring);
23 #endif
24 
25 #ifndef HAVE_STRLCAT
26 size_t  strlcat(char *, const char *, size_t);
27 #endif
28 
29 #ifndef HAVE_STRLCPY
30 size_t  strlcpy(char *, const char *, size_t);
31 #endif
32