~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

  • Committer: Eric Day
  • Date: 2009-10-31 21:53:33 UTC
  • mfrom: (1200 staging)
  • mto: This revision was merged to the branch mainline in revision 1202.
  • Revision ID: eday@oddments.org-20091031215333-j94bjoanwmi68p6f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
/*  This is needed for the definitions of strchr... on solaris */
20
20
 
21
21
 
22
 
#ifndef _m_string_h
23
 
#define _m_string_h
24
 
 
25
 
#include <drizzled/global.h>
 
22
#ifndef MYSTRINGS_M_STRING_H
 
23
#define MYSTRINGS_M_STRING_H
26
24
 
27
25
#ifndef __USE_GNU
28
26
#define __USE_GNU                               /* We want to use my_stpcpy */
34
32
#include <string.h>
35
33
#endif
36
34
 
 
35
#include <stdint.h>
37
36
#include <stdlib.h>
38
37
#include <stddef.h>
39
38
#include <assert.h>
155
154
  return end+1;
156
155
}
157
156
 
158
 
#endif
 
157
#endif /* MYSTRINGS_M_STRING_H */