~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/make-conf.c

  • Committer: Monty Taylor
  • Date: 2008-07-22 05:48:51 UTC
  • mto: (202.1.3 toru)
  • mto: This revision was merged to the branch mainline in revision 204.
  • Revision ID: monty@inaugust.com-20080722054851-airxt73370725p7x
Re-enabled optimizations for the normal build, and added back the --with-debug option to turn them off. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
#define ROW_LEN   16
42
42
 
43
 
void print_array(const char *name, const unsigned char *array, uint32_t size);
 
43
void print_array(const char *name, const uchar *array, uint size);
44
44
 
45
45
int main(void)
46
46
{
56
56
  exit(EXIT_SUCCESS);
57
57
}
58
58
 
59
 
void print_array(const char *name, const unsigned char *array, uint32_t size)
 
59
void print_array(const char *name, const uchar *array, uint size)
60
60
{
61
 
  uint32_t i;
 
61
  uint i;
62
62
 
63
63
  printf("\n# The %s array must have %d elements.\n", name, size);
64
64