~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_qsort.c

MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
{
100
100
  char *low, *high, *pivot;
101
101
  stack_node stack[STACK_SIZE], *stack_ptr;
102
 
  my_bool ptr_cmp;
 
102
  bool ptr_cmp;
103
103
  /* Handle the simple case first */
104
104
  /* This will also make the rest of the code simpler */
105
105
  if (count <= 1)