~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_alloc.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
Remove uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <libdrizzle/net_serv.h>
24
24
 
25
 
void init_sql_alloc(MEM_ROOT *root, uint block_size, uint pre_alloc_size);
 
25
void init_sql_alloc(MEM_ROOT *root, uint32_t block_size, uint32_t pre_alloc_size);
26
26
void *sql_alloc(size_t);
27
27
void *sql_calloc(size_t);
28
28
char *sql_strdup(const char *str);