Rizin
unix-like reverse engineering framework and cli tools
config.h
Go to the documentation of this file.
1 #ifndef MSPACK_CONFIG_H
2 #define MSPACK_CONFIG_H
3 /* Define if building universal (internal helper macro) */
4 
5 /* Turn debugging mode on? */
6 #define DEBUG 0
7 
8 /* Define to 1 if you have the <dlfcn.h> header file. */
9 #define HAVE_DLFCN_H 1
10 
11 /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
12 #define HAVE_FSEEKO 1
13 
14 /* Define to 1 if you have the <inttypes.h> header file. */
15 #define HAVE_INTTYPES_H 1
16 
17 /* Define to 1 if you have the `mkdir' function. */
18 #define HAVE_MKDIR 1
19 
20 /* Define to 1 if you have the <stdint.h> header file. */
21 #define HAVE_STDINT_H 1
22 
23 /* Define to 1 if you have the <stdio.h> header file. */
24 #define HAVE_STDIO_H 1
25 
26 /* Define to 1 if you have the <stdlib.h> header file. */
27 #define HAVE_STDLIB_H 1
28 
29 /* Define to 1 if you have the <strings.h> header file. */
30 #define HAVE_STRINGS_H 1
31 
32 /* Define to 1 if you have the <string.h> header file. */
33 #define HAVE_STRING_H 1
34 
35 /* Define to 1 if you have the <sys/stat.h> header file. */
36 #define HAVE_SYS_STAT_H 1
37 
38 /* Define to 1 if you have the <sys/types.h> header file. */
39 #define HAVE_SYS_TYPES_H 1
40 
41 /* Define to 1 if you have the `towlower' function. */
42 #define HAVE_TOWLOWER 1
43 
44 /* Define to 1 if you have the <unistd.h> header file. */
45 #define HAVE_UNISTD_H 1
46 
47 /* Define to 1 if you have the `_mkdir' function. */
48 #define HAVE__MKDIR 0
49 
50 /* Define if mkdir takes only one argument. */
51 #define MKDIR_TAKES_ONE_ARG 0
52 
53 /* Version number of package */
54 #define VERSION "0.10.1alpha"
55 
56 /* The size of `off_t', as computed by sizeof. */
57 #define SIZEOF_OFF_T 8
58 
59 /* Define to 1 if all of the C90 standard headers exist (not just the ones
60  required in a freestanding environment). This macro is provided for
61  backward compatibility; new code need not use it. */
62 #define STDC_HEADERS 1
63 
64 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
65  significant byte first (like Motorola and SPARC, unlike Intel). */
66 #define WORDS_BIGENDIAN 0
67 
68 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
69 #define _LARGEFILE_SOURCE 1
70 
71 /* Define for large files, on AIX-style hosts. */
72 #define _LARGE_FILES 0
73 
74 /* Define to `int' if <sys/types.h> does not define. */
75 #if !(1)
76 #define mode_t int
77 #endif
78 
79 /* Define to `long int' if <sys/types.h> does not define. */
80 #if !(1)
81 #define off_t long int
82 #endif
83 
84 /* Define to `unsigned int' if <sys/types.h> does not define. */
85 #if !(1)
86 #define size_t unsigned int
87 #endif
88 
89 #endif /* MSPACK_CONFIG_H */