summaryrefslogtreecommitdiff
path: root/Build/source/libs/xpdf/xpdf-src/goo/GList.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-src/goo/GList.h')
-rw-r--r--Build/source/libs/xpdf/xpdf-src/goo/GList.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Build/source/libs/xpdf/xpdf-src/goo/GList.h b/Build/source/libs/xpdf/xpdf-src/goo/GList.h
index 005043726a5..ee12346c5cf 100644
--- a/Build/source/libs/xpdf/xpdf-src/goo/GList.h
+++ b/Build/source/libs/xpdf/xpdf-src/goo/GList.h
@@ -11,10 +11,6 @@
#include <aconf.h>
-#ifdef USE_GCC_PRAGMAS
-#pragma interface
-#endif
-
#include "gtypes.h"
//------------------------------------------------------------------------
@@ -70,6 +66,9 @@ public:
// be double-dereferenced.
void sort(int (*cmp)(const void *ptr1, const void *ptr2));
+ // Sort <n> items starting at <first>.
+ void sort(int first, int n, int (*cmp)(const void *ptr1, const void *ptr2));
+
// Reverse the list.
void reverse();