diff options
Diffstat (limited to 'src/port/qsort.c')
-rw-r--r-- | src/port/qsort.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/port/qsort.c b/src/port/qsort.c index a7aa8cea2a..3f3e7787e9 100644 --- a/src/port/qsort.c +++ b/src/port/qsort.c @@ -1,11 +1,15 @@ /* + * qsort.c: standard quicksort algorithm + * * Modifications from vanilla NetBSD source: * Add do ... while() macro fix * Remove __inline, _DIAGASSERTs, __P * Remove ill-considered "swap_cnt" switch to insertion sort, * in favor of a simple check for presorted input. * - * $PostgreSQL: pgsql/src/port/qsort.c,v 1.9 2006/03/21 19:49:15 tgl Exp $ + * CAUTION: if you change this file, see also qsort_arg.c + * + * $PostgreSQL: pgsql/src/port/qsort.c,v 1.10 2006/10/03 22:18:23 tgl Exp $ */ /* $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $ */ |