Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
359 B

  1. /* qsort routine */
  2. /* we have this routine because apparently some version of the
  3. standard libraries don't work, possibly because REF passes
  4. in unaligned pointers */
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. void ref_qsort (
  9. void *base,
  10. unsigned num,
  11. unsigned width,
  12. int (*comp)(const void *, const void *)
  13. );
  14. #ifdef __cplusplus
  15. };
  16. #endif