~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_init.cc

MergedĀ build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "drizzled/internal/mysys_priv.h"
 
16
#include "config.h"
 
17
 
 
18
#include "drizzled/internal/my_sys.h"
17
19
#include "my_static.h"
18
 
#include "drizzled/my_error.h"
 
20
#include "drizzled/error.h"
19
21
#include "drizzled/internal/m_string.h"
20
22
#include "drizzled/charset_info.h"
21
23
#include "drizzled/charset.h"
22
24
#include <cstdio>
23
25
#include <cstdlib>
24
26
 
 
27
namespace drizzled
 
28
{
 
29
namespace internal
 
30
{
 
31
 
25
32
bool my_init_done= 0;
26
33
uint    mysys_usage_id= 0;              /* Incremented for each my_init() */
27
34
 
91
98
 
92
99
  my_init_done=0;
93
100
} /* my_end */
 
101
 
 
102
} /* namespace internal */
 
103
} /* namespace drizzled */