summaryrefslogtreecommitdiff
path: root/Build/source/texk/upmendex/qsort.h
diff options
context:
space:
mode:
authorTakuji Tanaka <KXD02663@nifty.ne.jp>2016-02-09 11:02:48 +0000
committerTakuji Tanaka <KXD02663@nifty.ne.jp>2016-02-09 11:02:48 +0000
commitadec059e95b8e5728d8fb2d8420c5e928812c282 (patch)
tree28d38c44042fea2befbccbdd71063c801518d298 /Build/source/texk/upmendex/qsort.h
parentb0bdd8cd0fed764f189d773b0b0f69d25415a8f5 (diff)
texk/upmendex: upmendex 0.50
git-svn-id: svn://tug.org/texlive/trunk@39638 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/upmendex/qsort.h')
-rw-r--r--Build/source/texk/upmendex/qsort.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Build/source/texk/upmendex/qsort.h b/Build/source/texk/upmendex/qsort.h
new file mode 100644
index 00000000000..13e4972fec3
--- /dev/null
+++ b/Build/source/texk/upmendex/qsort.h
@@ -0,0 +1,16 @@
+/*
+ *
+ * This file is part of
+ * MakeIndex - A formatter and format independent index processor
+ *
+ * This file is public domain software donated by
+ * Nelson Beebe (beebe@science.utah.edu).
+ *
+ */
+#include <string.h> /* for size_t */
+
+typedef int (*qq_compar_fn_t)(const void *, const void *);
+
+extern void qqsort (void *base, size_t n, size_t size, qq_compar_fn_t compar);
+
+#define qsort qqsort