~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/time_functions.cc

Updated an include guard thanks to a nice catch during code review from Jay. Thanks Jay!

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
/* Functions to handle date and time */
22
22
 
23
 
#include "config.h"
 
23
#include "drizzled/server_includes.h"
24
24
#include "drizzled/error.h"
25
25
#include "drizzled/util/test.h"
26
26
#include "drizzled/tztime.h"
27
27
#include "drizzled/session.h"
28
28
#include "drizzled/time_functions.h"
29
29
 
30
 
namespace drizzled
31
 
{
32
 
 
33
30
/* Some functions to calculate dates */
34
31
 
 
32
#ifndef TESTTIME
35
33
 
36
34
int calc_weekday(long daynr,bool sunday_first_day_of_week)
37
35
{
284
282
  return neg;
285
283
}
286
284
 
287
 
} /* namespace drizzled */
 
285
 
 
286
#endif