mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.5 1997/09/07 04:42:05 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.6 1997/09/08 02:23:02 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -29,15 +29,15 @@
|
||||
** as passed into lisp_qsort(), and returns a new list with
|
||||
** the nodes sorted. The old list is *not* freed or modified (?)
|
||||
*/
|
||||
List *
|
||||
List *
|
||||
lisp_qsort(List * the_list, /* the list to be sorted */
|
||||
int (*compare) ()) /* function to compare two nodes */
|
||||
{
|
||||
int i;
|
||||
size_t num;
|
||||
List **nodearray;
|
||||
List *tmp,
|
||||
*output;
|
||||
int i;
|
||||
size_t num;
|
||||
List **nodearray;
|
||||
List *tmp,
|
||||
*output;
|
||||
|
||||
/* find size of list */
|
||||
num = length(the_list);
|
||||
|
||||
Reference in New Issue
Block a user