~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_alloc.cc

  • Committer: Monty Taylor
  • Date: 2009-10-13 06:22:10 UTC
  • mfrom: (1182 staging)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20091013062210-iwnwwcdamjdvlx1m
Merged up with build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <drizzled/current_session.h>
21
21
#include <drizzled/error.h>
22
22
 
23
 
extern "C" {
24
 
  void sql_alloc_error_handler(void);
25
 
}
 
23
extern "C" void sql_alloc_error_handler(void);
26
24
 
27
 
void sql_alloc_error_handler(void)
 
25
extern "C" void sql_alloc_error_handler(void)
28
26
{
29
27
  errmsg_printf(ERRMSG_LVL_ERROR, "%s",ER(ER_OUT_OF_RESOURCES));
30
28
}