/* Stability for the rest */
if (x < y)
return -1;
- if (y > x)
+ if (x > y)
return 1;
return 0;
/* Stability for the rest */
if (x < y)
return -1;
- if (y > x)
+ if (x > y)
return 1;
return 0;
/* Stability for the rest */
if (x < y)
return -1;
- if (y > x)
+ if (x > y)
return 1;
return 0;