~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/my_decimal.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:
29
29
  Most function are just inline wrappers around library calls
30
30
*/
31
31
 
32
 
#ifndef my_decimal_h
33
 
#define my_decimal_h
 
32
#ifndef DRIZZLED_MY_DECIMAL_H
 
33
#define DRIZZLED_MY_DECIMAL_H
34
34
 
35
35
#ifdef __cplusplus
36
36
extern "C" {
401
401
void my_decimal_trim(uint32_t *precision, uint32_t *scale);
402
402
 
403
403
 
404
 
#endif /*my_decimal_h*/
 
404
#endif /* DRIZZLED_MY_DECIMAL_H */
405
405