-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.in
44 lines (32 loc) · 1.06 KB
/
config.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* "config.h.in" $Id: config.h.in,v 1.1 1996/08/10 14:24:19 motohash Exp $ */
/* Define to empty if the keyword does not work. */
#undef const
/* Define to empty if the keyword does not work. */
#undef inline
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define to 1 if ANSI function prototypes are usable. */
#undef PROTOTYPES
/* Define if you have the <bstring.h> header file. */
#undef HAVE_BSTRING_H
/* Define if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define if you have the strerror function. */
#undef HAVE_STRERROR
#if DBLEV > 0
# define DBLOG(LV, X) if ((DBLEV) >= DBLOCAL) printf X
#else
# define DBLOG(LV, X)
#endif
#if defined(__STDC__) || defined(_AIX) || (defined(__mips) &&\
defined(_SYSTYPE_SVR4)) || defined(WIN32)
# define PARAMS(X) X
#else
# define PARAMS(X) ()
#endif