~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/global.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-03-09 19:18:36 UTC
  • mfrom: (923 drizzle)
  • mto: (934.3.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: osullivan.padraig@gmail.com-20090309191836-ixiam3xa55off3do
MergeĀ fromĀ trunk.

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