~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tzfile.h

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  Information about time zone files.
29
29
*/
30
30
 
31
 
#ifndef DRIZZLED_TZFILE_H
32
 
#define DRIZZLED_TZFILE_H
33
 
 
34
 
namespace drizzled
35
 
{
36
 
 
37
31
#ifndef TZDIR
38
32
#define TZDIR   "/usr/share/zoneinfo" /* Time zone object file directory */
39
33
#endif /* !defined TZDIR */
144
138
  that will probably do.
145
139
*/
146
140
 
147
 
} /* namespace drizzled */
148
 
 
149
 
#endif /* DRIZZLED_TZFILE_H */
 
141
#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0))