~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

merge latest from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#include "client_priv.h"
41
41
#include <mystrings/m_ctype.h>
42
42
#include <stdarg.h>
43
 
#ifndef __GNU_LIBRARY__
44
 
#define __GNU_LIBRARY__          // Skip warnings in getopt.h
45
 
#endif
46
43
#include <readline/history.h>
47
44
#include "my_readline.h"
48
45
#include <signal.h>
63
60
/* Buffer to hold 'version' and 'version_comment' */
64
61
#define MAX_SERVER_VERSION_LENGTH     128
65
62
 
66
 
/* Array of options to pass to libdrizzled */
67
 
#define MAX_SERVER_ARGS               64
68
 
 
69
63
void* sql_alloc(unsigned size);       // Don't use drizzled alloc for these
70
64
void sql_element_free(void *ptr);
71
65