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;}
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)