-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.in
71 lines (52 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Define if you have strcasecmp, as a function or macro. */
#undef HAVE_STRCASECMP
/* Define if you have snprintf, as a function or macro. */
#undef HAVE_SNPRINTF
/* Define if you have a working `mmap' system call. */
#undef HAVE_MMAP
/* Define to `unsigned' if <sys/types.h> doesn't define. */
#undef size_t
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define to `unsigned long long' if <sys/types.h> doesn't define. */
#undef u_int64_t
/* Define to `unsigned int' if <sys/types.h> doesn't define. */
#undef u_int32_t
/* Define to `unsigned short' if <sys/types.h> doesn't define. */
#undef u_int16_t
/* Define to `unsigned char' if <sys/types.h> doesn't define. */
#undef u_int8_t
/* Define if you have the getpagesize function. */
#undef HAVE_GETPAGESIZE
/* Define if you have the memcpy function. */
#undef HAVE_MEMCPY
/* Define if you have the strrchr function. */
#undef HAVE_STRRCHR
/* Define if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define if you have the <md5.h> header file. */
#undef HAVE_MD5_H
/* Define if you have the <err.h> header file. */
#undef HAVE_ERR_H
/* Define if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
#if STDC_HEADERS || HAVE_STRING_H
# include <string.h>
#else
# ifndef HAVE_STRCHR
# define strchr index
# define strrchr rindex
# endif
char *strchr (), *strrchr ();
# ifndef HAVE_MEMCPY
# define memcpy(d, s, n) bcopy ((s), (d), (n))
# define memmove(d, s, n) bcopy ((s), (d), (n))
# endif
#endif
#ifndef HAVE_STRCASECMP
#define strcasecmp strcmp
#endif
#ifndef __P
#define __P(x) x
#endif