- check if inline was already defined to prevent warning
[libfirm] / win32 / config.h
1 /* WIN32 - version */
2 /* always debug heap support */
3 #include "crtdbg.h"
4
5 /* Define to 1 if you have the <alloca.h> header file. */
6 /* #undef HAVE_ALLOCA_H */
7
8 /* Define to 1 if you have the <malloc.h> header file. */
9 #define HAVE_MALLOC_H 1
10
11 /* Define to 1 if you have the <inttypes.h> header file. */
12 /* #undef HAVE_INTTYPES_H */
13
14 /* Define to 1 if you have the <jni.h> header file. */
15 /* #undef HAVE_JNI_H */
16
17 /* Define to 1 if you have the <math.h> header file. */
18 #define HAVE_MATH_H 1
19
20 /* Define to 1 if you have the <memory.h> header file. */
21 #define HAVE_MEMORY_H 1
22
23 /* Define to 1 if you have the <obstack.h> header file. */
24 #define HAVE_OBSTACK_H 1
25
26 /* Define to 1 if you have the <stdint.h> header file. */
27 #define HAVE_STDINT_H 1
28
29 /* Define to 1 if you have the <stdlib.h> header file. */
30 #define HAVE_STDLIB_H 1
31
32 /* Define to 1 if you have the <strings.h> header file. */
33 /* #undef HAVE_STRINGS_H */
34
35 /* Define to 1 if you have the <string.h> header file. */
36 #define HAVE_STRING_H 1
37
38 /* Define to 1 if you have the <sys/stat.h> header file. */
39 #define HAVE_SYS_STAT_H 1
40
41 /* Define to 1 if you have the <sys/types.h> header file. */
42 #define HAVE_SYS_TYPES_H 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 <io.h> header file. */
48 #define HAVE_IO_H 1
49
50 /* Define to the address where bug reports for this package should be sent. */
51 #define PACKAGE_BUGREPORT "firm@ipd.info.uni-karlsruhe.de"
52
53 /* Define to the full name of this package. */
54 #define PACKAGE_NAME "libFIRM"
55
56 /* Define to the full name and version of this package. */
57 #define PACKAGE_STRING "libFIRM 1.14.0"
58
59 /* Define to the one symbol short name of this package. */
60 #define PACKAGE_TARNAME "libFIRM"
61
62 /* Define to the version of this package. */
63 #define PACKAGE_VERSION "1.14.0"
64
65 /* Define to 1 if you have the ANSI C header files. */
66 #define STDC_HEADERS 1
67
68 #define libfirm_VERSION_MAJOR 1
69 #define libfirm_VERSION_MINOR 14
70 #define libfirm_VERSION_MICRO 0
71
72 /* ---------------snip, snip ---------------------- */
73
74 /* define to enable debugging stuff. */
75 #define DEBUG_libfirm 1
76
77 /* define to 1 to use the ILP solver */
78 /* #undef WITH_ILP */
79
80 /* Define to disable assertion checking.  */
81 /* #undef NDEBUG */
82
83 /* Define to 1 if long double works and has more range or precision than
84    double. */
85 /* #undef HAVE_LONG_DOUBLE */
86
87 /* Define to 1 if your processor stores words with the most significant byte
88    first (like Motorola and SPARC, unlike Intel and VAX). */
89 /* #undef WORDS_BIGENDIAN */
90
91 /* Define to 1 if Firm statistics are activated */
92 #define FIRM_STATISTICS 1
93
94 /* Define the right volatile token */
95 /* #undef volatile */
96
97 /* Define the right const token */
98 /* #undef const */
99
100 #ifndef inline
101 #define inline __inline
102 #endif
103
104 /* map some non-POSIX names for Win32 */
105 #define snprintf    _snprintf
106 #define strcasecmp  stricmp
107 #define strncasecmp _strnicmp
108 #define __attribute__(x)
109
110 typedef unsigned __int32 uint32_t;
111 typedef __int64 int64_t;