~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_symbol.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:
20
20
 
21
21
/* This struct includes all reserved words and functions */
22
22
 
23
 
#ifndef _lex_symbol_h
24
 
#define _lex_symbol_h
 
23
#ifndef DRIZZLED_LEX_SYMBOL_H
 
24
#define DRIZZLED_LEX_SYMBOL_H
25
25
 
26
26
typedef struct st_sym_group {
27
27
  const char *name;
46
46
extern SYM_GROUP sym_group_rtree;
47
47
 
48
48
 
49
 
#endif /* _lex_symbol_h */
 
49
#endif /* DRIZZLED_LEX_SYMBOL_H */