~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/myisamchk.cc

  • Committer: Brian Aker
  • Date: 2008-12-17 23:37:33 UTC
  • mfrom: (685.1.41 devel)
  • Revision ID: brian@tangent.org-20081217233733-ra30lk7ju04k7re9
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
/* Describe, check and repair of MyISAM tables */
17
17
 
18
 
#include <drizzled/global.h>
 
18
#include "myisamdef.h"
 
19
#include "myisam.h"
19
20
 
20
21
#include <mystrings/m_ctype.h>
21
 
#include <stdio.h>
22
 
#include <stdarg.h>
23
22
#include <mysys/my_getopt.h>
24
23
#include <mysys/my_bit.h>
25
 
#include <myisam.h>
26
24
#include <mystrings/m_string.h>
 
25
#include <stdio.h>
 
26
#include <stdarg.h>
27
27
#ifdef HAVE_SYS_VADVICE_H
28
28
#include <sys/vadvise.h>
29
29
#endif
32
32
#endif
33
33
#include <drizzled/util/test.h>
34
34
 
35
 
#include "myisamdef.h"
36
35
 
37
36
pthread_mutex_t THR_LOCK_myisam= PTHREAD_MUTEX_INITIALIZER;
38
37