1/* config.h.in.  Generated automatically from configure.in by autoheader.  */
2
3/* Define to empty if the keyword does not work.  */
4#undef const
5
6/* Define to `long' if <sys/types.h> doesn't define.  */
7#undef off_t
8
9/* Define as the return type of signal handlers (int or void).  */
10#undef RETSIGTYPE
11
12/* Define to `unsigned' if <sys/types.h> doesn't define.  */
13#undef size_t
14
15/* Define if you have the ANSI C header files.  */
16#undef STDC_HEADERS
17
18/* Define if you can safely include both <sys/time.h> and <time.h>.  */
19#undef TIME_WITH_SYS_TIME
20
21/* Define if your <sys/time.h> declares struct tm.  */
22#undef TM_IN_SYS_TIME
23
24/* Define if you have the arc4random function.  */
25#undef HAVE_ARC4RANDOM
26
27/* Define if you have the getopt function.  */
28#undef HAVE_GETOPT
29
30/* Define if you have the gettimeofday function.  */
31#undef HAVE_GETTIMEOFDAY
32
33/* Define if you have the select function.  */
34#undef HAVE_SELECT
35
36/* Define if you have the strdup function.  */
37#undef HAVE_STRDUP
38
39/* Define if you have the strlcat function.  */
40#undef HAVE_STRLCAT
41
42/* Define if you have the strlcpy function.  */
43#undef HAVE_STRLCPY
44
45/* Define if you have the <fcntl.h> header file.  */
46#undef HAVE_FCNTL_H
47
48/* Define if you have the <inttypes.h> header file.  */
49#undef HAVE_INTTYPES_H
50
51/* Define if you have the <malloc.h> header file.  */
52#undef HAVE_MALLOC_H
53
54/* Define if you have the <stdint.h> header file.  */
55#undef HAVE_STDINT_H
56
57/* Define if you have the <strings.h> header file.  */
58#undef HAVE_STRINGS_H
59
60/* Define if you have the <sys/ioctl.h> header file.  */
61#undef HAVE_SYS_IOCTL_H
62
63/* Define if you have the <sys/time.h> header file.  */
64#undef HAVE_SYS_TIME_H
65
66/* Define if you have the <unistd.h> header file.  */
67#undef HAVE_UNISTD_H
68
69/* Define if you have the <windows.h> header file.  */
70#undef HAVE_WINDOWS_H
71
72/* Define if you have the <winsock.h> header file.  */
73#undef HAVE_WINSOCK_H
74
75/* Define if you have the nsl library (-lnsl).  */
76#undef HAVE_LIBNSL
77
78/* Define if you have the socket library (-lsocket).  */
79#undef HAVE_LIBSOCKET
80
81/* Define if you have the str library (-lstr).  */
82#undef HAVE_LIBSTR
83
84/* Name of package */
85#undef PACKAGE
86
87/* Version number of package */
88#undef VERSION
89
90/* Define for faster code generation. */
91#undef WIN32_LEAN_AND_MEAN
92
93/* Use MingW32's internal snprintf */
94#undef snprintf
95
96/* Use MingW32's internal vsnprintf */
97#undef vsnprintf
98
99/* Location of configuration file. */
100#undef FRAGROUTE_CONF
101
102/* XXX - for strl* definitions below */
103#include <sys/types.h>
104
105#ifdef HAVE_INTTYPES_H
106#include <inttypes.h>
107#endif
108
109#ifdef HAVE_STDINT_H
110#include <stdint.h>
111#endif
112
113#ifdef HAVE_WINDOWS_H
114#include <windows.h>
115#endif
116
117#ifdef HAVE_WINSOCK_H
118#include <winsock.h>
119#endif
120
121#ifndef HAVE_GETOPT
122int	getopt(int argc, char * const *argv, const char *optstring);
123#endif
124
125#ifndef HAVE_STRLCAT
126size_t  strlcat(char *, const char *, size_t);
127#endif
128
129#ifndef HAVE_STRLCPY
130size_t  strlcpy(char *, const char *, size_t);
131#endif
132