mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
0b514caa50
Moving it inside gcc dir allows gcc to detect and build isl while building gcc. It has dependencies on other libraries that would need to be prebuilt if we build it ourselves. This is one of a few steps in building gcc with isl and allowing graphite optimization flags.
10 lines
197 B
C
10 lines
197 B
C
#ifndef ISL_SORT_H
|
|
#define ISL_SORT_H
|
|
|
|
#include <stddef.h>
|
|
|
|
int isl_sort(void *const pbase, size_t total_elems, size_t size,
|
|
int (*cmp)(const void *, const void *, void *arg), void *arg);
|
|
|
|
#endif
|