From 3baf8f9f39d6d5c792ccdf716f4fd405da007676 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Thu, 7 Mar 2019 12:49:16 +0100 Subject: forgot the .h --- test/monniaux/glibc_qsort/glibc_qsort.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/monniaux/glibc_qsort/glibc_qsort.h 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); -- cgit