~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

  • Committer: Monty Taylor
  • Date: 2009-08-30 00:26:17 UTC
  • mto: (1130.3.4 memory-file-moves)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090830002617-o57hrj99p6fp1186
Fixed all of the include guards.

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
 
22
#ifndef MYSTRINGS_M_STRING_H
 
23
#define MYSTRINGS_M_STRING_H
24
24
 
25
 
#include <drizzled/global.h>
 
25
#include "drizzled/global.h"
26
26
 
27
27
#ifndef __USE_GNU
28
28
#define __USE_GNU                               /* We want to use my_stpcpy */
155
155
  return end+1;
156
156
}
157
157
 
158
 
#endif
 
158
#endif /* MYSTRINGS_M_STRING_H */