xref: /llvm-project/polly/lib/External/isl/isl_sort.h (revision 52a25237d894fd5736a90f11df2c5c9391d13fd5)
1 #ifndef ISL_SORT_H
2 #define ISL_SORT_H
3 
4 #include <stddef.h>
5 
6 int isl_sort(void *const pbase, size_t total_elems, size_t size,
7 	int (*cmp)(const void *, const void *, void *arg), void *arg);
8 
9 #endif
10