summaryrefslogtreecommitdiff
path: root/src/backend/lib/qsort.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/lib/qsort.h')
-rw-r--r--src/backend/lib/qsort.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/backend/lib/qsort.h b/src/backend/lib/qsort.h
deleted file mode 100644
index d81d4e2e07..0000000000
--- a/src/backend/lib/qsort.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * qsort.h--
- *
- *
- *
- * Copyright (c) 1994, Regents of the University of California
- *
- * $Id: qsort.h,v 1.1.1.1 1996/07/09 06:21:29 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 */
-