Merge branch 'master' of ssh://plrg.eecs.uci.edu/home/git/constraint_compiler
[satune.git] / src / Collections / qsort.h
1 #ifndef BSD_QSORT_H
2 #define BSD_QSORT_H
3
4
5 void bsdqsort(void *a, size_t n, size_t es, int (*cmp)(const void *, const void *));
6
7 #endif