~jaypipes/drizzle/item-class-file-reorg

« back to all changes in this revision

Viewing changes to include/my_global.h

  • Committer: Brian Aker
  • Date: 2008-07-26 18:39:33 UTC
  • mfrom: (212.1.3 codestyle)
  • Revision ID: brian@tangent.org-20080726183933-hueup0fcy2zs1hug
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
#error "Please add -fno-exceptions to CXXFLAGS and reconfigure/recompile"
215
215
#endif
216
216
 
 
217
#if defined(HAVE_STDINT_H)
 
218
/* Need to include this _before_ stdlib, so that all defines are right */
 
219
/* We are mixing C and C++, so we wan the C limit macros in the C++ too */
 
220
/* Enable some extra C99 extensions */
 
221
#define __STDC_LIMIT_MACROS
 
222
#define __STDC_FORMAT_MACROS
 
223
#include <inttypes.h>
 
224
#include <stdint.h>
 
225
#endif
 
226
 
217
227
#ifndef stdin
218
228
#include <stdio.h>
219
229
#endif
261
271
 
262
272
#include <errno.h>                              /* Recommended by debian */
263
273
 
264
 
#if defined(HAVE_STDINT_H)
265
 
/* We are mixing C and C++, so we wan the C limit macros in the C++ too */
266
 
/* Enable some extra C99 extensions */
267
 
#define __STDC_LIMIT_MACROS
268
 
#define __STDC_FORMAT_MACROS
269
 
#include <inttypes.h>
270
 
#include <stdint.h>
271
 
#endif
272
 
 
273
274
#if defined(HAVE_STDBOOL_H)
274
275
#include <stdbool.h>
275
276
#endif