~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_time.h

Removed global.h. Fixed all the headers.
Also fixed headers to allow for some out of tree builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef MYSYS_MY_TIME_H
27
27
#define MYSYS_MY_TIME_H
28
28
 
 
29
#if TIME_WITH_SYS_TIME
 
30
# include <sys/time.h>
 
31
# include <time.h>
 
32
#else
 
33
# if HAVE_SYS_TIME_H
 
34
#  include <sys/time.h>
 
35
# else
 
36
#  include <time.h>
 
37
# endif
 
38
#endif
 
39
 
 
40
 
29
41
#include "drizzle_time.h"
30
42
 
31
43
#ifdef __cplusplus