~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/m_string.h

  • Committer: Mark Atwood
  • Date: 2011-10-08 04:50:51 UTC
  • mfrom: (2430.1.1 rf)
  • Revision ID: me@mark.atwood.name-20111008045051-6ha1qiy7k2a9c3jv
Tags: 2011.10.27
mergeĀ lp:~olafvdspek/drizzle/refactor2

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#pragma once
20
20
 
21
21
#include <strings.h>
22
 
#include <cstring>
23
 
#include <cstdlib>
24
 
#include <cstddef>
 
22
#include <string.h>
 
23
#include <stdlib.h>
 
24
#include <stddef.h>
25
25
#include <cassert>
26
 
#include <climits>
27
 
#include <cctype>
 
26
#include <limits.h>
 
27
#include <ctype.h>
28
28
 
29
29
#include <drizzled/visibility.h>
30
30