~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/base64.cc

  • 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:
17
17
#include <mystrings/m_string.h>  /* strchr() */
18
18
#include <mystrings/m_ctype.h>  /* my_isspace() */
19
19
#include <mysys/base64.h>
20
 
#include <stdio.h>
21
 
#include CMATH_H
 
20
#include <cstdio>
 
21
#include <cmath>
22
22
 
23
 
#if defined(CMATH_NAMESPACE)
24
 
using namespace CMATH_NAMESPACE;
25
 
#endif
 
23
using namespace std;
26
24
 
27
25
#ifndef MAIN
28
26