~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/resolve_stack_dump.c

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
   versions into symbolic names. By Sasha Pachev <sasha@mysql.com>
18
18
 */
19
19
 
20
 
#include <my_global.h>
21
 
#include <m_ctype.h>
22
 
#include <my_sys.h>
23
 
#include <m_string.h>
24
 
#include <drizzle_version.h>
 
20
#include <drizzled/global.h>
 
21
#include <mystrings/m_ctype.h>
 
22
#include <mysys/my_sys.h>
 
23
#include <mystrings/m_string.h>
 
24
#include <drizzled/version.h>
25
25
#include <errno.h>
26
 
#include <my_getopt.h>
 
26
#include <mysys/my_getopt.h>
27
27
 
28
28
#define INIT_SYM_TABLE  4096
29
29
#define INC_SYM_TABLE  4096
63
63
 
64
64
static void verify_sort(void);
65
65
 
66
 
 
67
 
#include <help_start.h>
68
 
 
69
66
static void print_version(void)
70
67
{
71
68
  printf("%s  Ver %s Distrib %s, for %s (%s)\n",my_progname,DUMP_VERSION,
89
86
If the numeric-dump-file is not given, the stack trace is read from stdin.\n");
90
87
}
91
88
 
92
 
#include <help_end.h>
93
 
 
94
 
 
95
89
static void die(const char* fmt, ...)
96
90
{
97
91
  va_list args;