aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/glibc_qsort/glibc_qsort.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/glibc_qsort/glibc_qsort.h')
-rw-r--r--test/monniaux/glibc_qsort/glibc_qsort.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/monniaux/glibc_qsort/glibc_qsort.h b/test/monniaux/glibc_qsort/glibc_qsort.h
new file mode 100644
index 00000000..98719b6c
--- /dev/null
+++ b/test/monniaux/glibc_qsort/glibc_qsort.h
@@ -0,0 +1,4 @@
+typedef int comparison(const void *, const void *, void *);
+
+void quicksort (void *const pbase, size_t total_elems, size_t size,
+ comparison *cmp, void *arg);