1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

pgindent run.

This commit is contained in:
Bruce Momjian
2002-09-04 20:31:48 +00:00
parent c91ceec21d
commit e50f52a074
446 changed files with 14942 additions and 13363 deletions

View File

@ -1,9 +1,9 @@
/*
* Copied from NetBSD CVS, 2002-07-19, bjm
* Add do ... while() macro fix
* Remove __inline, _DIAGASSERTs, __P
* Copied from NetBSD CVS, 2002-07-19, bjm
* Add do ... while() macro fix
* Remove __inline, _DIAGASSERTs, __P
*
* $Header: /cvsroot/pgsql/src/port/qsort.c,v 1.2 2002/08/12 15:24:07 tgl Exp $
* $Header: /cvsroot/pgsql/src/port/qsort.c,v 1.3 2002/09/04 20:31:48 momjian Exp $
*/
/* $NetBSD: qsort.c,v 1.12 1999/09/20 04:39:40 lukem Exp $ */
@ -46,9 +46,9 @@
#include <sys/types.h>
static char *med3 (char *, char *, char *,
int (*) (const void *, const void *));
static void swapfunc (char *, char *, size_t, int);
static char *med3(char *, char *, char *,
int (*) (const void *, const void *));
static void swapfunc(char *, char *, size_t, int);
#define min(a, b) ((a) < (b) ? (a) : (b))