]> granicus.if.org Git - postgresql/blobdiff - src/port/qsort_arg.c
Warn about initdb using mount-points
[postgresql] / src / port / qsort_arg.c
index f21f141c42545ad081e31c1375dc6a022c06b22f..3091eb09eada9860ec19efa3eef2c28c4cdb34a8 100644 (file)
@@ -7,9 +7,9 @@
  *       Remove ill-considered "swap_cnt" switch to insertion sort,
  *       in favor of a simple check for presorted input.
  *
- *     CAUTION: if you change this file, see also qsort.c
+ *     CAUTION: if you change this file, see also qsort.c, gen_qsort_tuple.pl
  *
- *     $PostgreSQL: pgsql/src/port/qsort_arg.c,v 1.3 2006/10/12 15:04:55 tgl Exp $
+ *     src/port/qsort_arg.c
  */
 
 /*     $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $   */
@@ -73,11 +73,7 @@ do {         \
        (es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1;
 
 static void
-swapfunc(a, b, n, swaptype)
-char      *a,
-                  *b;
-size_t         n;
-int                    swaptype;
+swapfunc(char *a, char *b, size_t n, int swaptype)
 {
        if (swaptype <= 1)
                swapcode(long, a, b, n);