~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_qsort.c

  • Committer: Monty Taylor
  • Date: 2008-08-22 04:52:07 UTC
  • mto: (365.1.2 drizzle)
  • mto: This revision was merged to the branch mainline in revision 368.
  • Revision ID: monty@inaugust.com-20080822045207-v5hswhr5jrmo5djl
Got rid of all instances of ~0

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
#define PUSH(LOW,HIGH)  {stack_ptr->low = LOW; stack_ptr++->high = HIGH;}
69
69
#define POP(LOW,HIGH)   {LOW = (--stack_ptr)->low; HIGH = stack_ptr->high;}
70
70
 
71
 
/* The following stack size is enough for uint32_t ~0 elements */
 
71
/* The following stack size is enough for UINT32_MAX elements */
72
72
#define STACK_SIZE      (8 * sizeof(unsigned long int))
73
73
#define THRESHOLD_FOR_INSERT_SORT 10
74
74
#if defined(QSORT_TYPE_IS_VOID)