1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-23 14:01:44 +03:00

pgindent run before 6.3 release, with Thomas' requested changes.

This commit is contained in:
Bruce Momjian
1998-02-26 04:46:47 +00:00
parent 757bf69a2e
commit a32450a585
430 changed files with 12390 additions and 10292 deletions

View File

@ -62,7 +62,7 @@ complex_in(char *str)
* pointer. POSTGRES thinks all output functions are:
* char *out_func(char *);
*/
char *
char *
complex_out(Complex * complex)
{
char *result;

View File

@ -33,7 +33,7 @@ add_one(int arg)
return (arg + 1);
}
char16 *
char16 *
concat16(char16 *arg1, char16 *arg2)
{
char16 *new_c16 = (char16 *) palloc(sizeof(char16));
@ -43,7 +43,7 @@ concat16(char16 *arg1, char16 *arg2)
return (char16 *) (strncat((char *) new_c16, (char *) arg2, 16));
}
text *
text *
copytext(text *t)
{