~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_global.h

  • Committer: Brian Aker
  • Date: 2008-07-08 21:36:11 UTC
  • mfrom: (77.1.34 codestyle)
  • Revision ID: brian@tangent.org-20080708213611-b0k2zy8eldttqct3
Merging up Monty's changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1171
1171
/* Length of decimal number represented by INT64. */
1172
1172
#define MY_INT64_NUM_DECIMAL_DIGITS 21
1173
1173
 
 
1174
#ifdef _cplusplus
 
1175
#include <string>
 
1176
#endif
 
1177
 
1174
1178
/* Define some useful general macros (should be done after all headers). */
1175
1179
#if !defined(max)
1176
1180
#define max(a, b)       ((a) > (b) ? (a) : (b))