~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/global.h

  • Committer: Brian Aker
  • Date: 2009-03-09 15:52:42 UTC
  • mfrom: (919.2.14 mordred)
  • Revision ID: brian@tangent.org-20090309155242-lv5dje0wgd44rcm8
Merge of Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
#if defined(__cplusplus)
32
32
 
33
 
# if defined(__GNUC) && defined(__EXCEPTIONS)
34
 
#  error "Please add -fno-exceptions to CXXFLAGS and reconfigure/recompile"
35
 
# endif
36
 
 
37
33
# include CSTDINT_H
38
34
# include CINTTYPES_H
39
35
# include <cstdio>
48
44
# include <stdio.h>
49
45
# include <stdlib.h>
50
46
# include <stddef.h>
51
 
# include <math.h>
52
47
# include <errno.h>        /* Recommended by debian */
53
48
/*
54
49
  A lot of our programs uses asserts, so better to always include it
58
53
 
59
54
#endif // __cplusplus
60
55
 
 
56
#include <math.h>
 
57
 
61
58
#ifndef EOVERFLOW
62
59
#define EOVERFLOW 84
63
60
#endif