~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: Monty
  • Date: 2008-10-02 17:30:12 UTC
  • mfrom: (139.1.20 drizzle)
  • Revision ID: mordred@scylla.inaugust.com-20081002173012-s13psynpc19bt0i6
MergedĀ fromĀ Trond.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 *
34
34
 **/
35
35
 
 
36
#include "config.h"
 
37
 
36
38
#include <string>
37
39
 
38
40
#include "client_priv.h"
67
69
void* sql_alloc(unsigned size);       // Don't use drizzled alloc for these
68
70
void sql_element_free(void *ptr);
69
71
 
 
72
 
70
73
#if defined(HAVE_CURSES_H) && defined(HAVE_TERM_H)
71
74
#include <curses.h>
 
75
#ifdef __sun
 
76
#undef clear
 
77
#undef erase
 
78
#endif
72
79
#include <term.h>
73
80
#else
74
81
#if defined(HAVE_TERMIOS_H)