~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleadmin.cc

  • Committer: Monty Taylor
  • Date: 2009-01-09 19:40:29 UTC
  • mto: (779.1.4 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109194029-vcic3m30e4uj0smj
General build cleanup - removed cruft, removed depreated checks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
*/
46
46
static void usage(void);
47
47
static void print_version(void);
48
 
extern "C" RETSIGTYPE endprog(int signal_number);
 
48
extern "C" void endprog(int signal_number);
49
49
extern "C" bool get_one_option(int optid, const struct my_option *opt,
50
50
                               char *argument);
51
51
static int execute_commands(DRIZZLE *drizzle,int argc, char **argv);
261
261
  return error ? 1 : 0;
262
262
}
263
263
 
264
 
RETSIGTYPE endprog(int)
 
264
void endprog(int)
265
265
{
266
266
  interrupted=1;
267
267
}