~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/libdrizzle.c

  • Committer: Monty Taylor
  • Date: 2008-09-15 00:46:33 UTC
  • mfrom: (383.1.55 client-split)
  • Revision ID: monty@inaugust.com-20080915004633-fmjw27fi41cxs35w
Merged from client-split.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
19
19
 
20
20
#include <drizzled/global.h>
21
 
#include "drizzle.h"
 
21
#include "libdrizzle.h"
22
22
#include "errmsg.h"
23
23
#include <sys/stat.h>
24
24
#include <signal.h>
49
49
#endif
50
50
 
51
51
#include <sql_common.h>
52
 
#include "client_settings.h"
53
52
#include <drizzled/version.h>
54
53
 
55
54
/* Borrowed from libicu header */
119
118
}
120
119
 
121
120
/**************************************************************************
122
 
  Ignore SIGPIPE handler
123
 
   ARGSUSED
124
 
**************************************************************************/
125
 
 
126
 
sig_handler
127
 
my_pipe_sig_handler(int sig __attribute__((unused)))
128
 
{
129
 
#ifdef DONT_REMEMBER_SIGNAL
130
 
  (void) signal(SIGPIPE, my_pipe_sig_handler);
131
 
#endif
132
 
}
133
 
 
134
 
 
135
 
/**************************************************************************
136
121
  Change user and database
137
122
**************************************************************************/
138
123