aboutsummaryrefslogtreecommitdiff
path: root/src/include/lib/qsort.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/lib/qsort.h')
-rw-r--r--src/include/lib/qsort.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/lib/qsort.h b/src/include/lib/qsort.h
new file mode 100644
index 00000000000..4fae4634f45
--- /dev/null
+++ b/src/include/lib/qsort.h
@@ -0,0 +1,24 @@
+/*-------------------------------------------------------------------------
+ *
+ * qsort.h--
+ *
+ *
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ * $Id: qsort.h,v 1.1 1996/08/28 07:22:40 scrappy Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef QSORT_H
+#define QSORT_H
+
+#include <sys/types.h>
+
+extern void pg_qsort(void *bot,
+ size_t nmemb,
+ size_t size,
+ int (*compar)(void *, void *));
+
+#endif /* QSORT_H */
+