1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

pgindent run over code.

This commit is contained in:
Bruce Momjian
1999-05-25 16:15:34 +00:00
parent 4b04b01aaa
commit 07842084fe
413 changed files with 11723 additions and 10769 deletions

View File

@ -18,11 +18,11 @@
*/
int add_one(int arg);
Point *makepoint(Point *pointx, Point *pointy );
Point *makepoint(Point *pointx, Point *pointy);
text *copytext(text *t);
bool c_overpaid(TupleTableSlot *t, /* the current instance of EMP */
int4 limit);
bool c_overpaid(TupleTableSlot *t, /* the current instance of EMP */
int4 limit);
@ -33,9 +33,9 @@ add_one(int arg)
}
Point *
makepoint(Point *pointx, Point *pointy )
makepoint(Point *pointx, Point *pointy)
{
Point *new_point = (Point *) palloc(sizeof(Point));
Point *new_point = (Point *) palloc(sizeof(Point));
new_point->x = pointx->x;
new_point->y = pointy->y;
@ -67,7 +67,7 @@ copytext(text *t)
}
bool
c_overpaid(TupleTableSlot *t, /* the current instance of EMP */
c_overpaid(TupleTableSlot *t, /* the current instance of EMP */
int4 limit)
{
bool isnull = false;