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

Used modified version of indent that understands over 100 typedefs.

This commit is contained in:
Bruce Momjian
1997-09-08 21:56:23 +00:00
parent 075cede748
commit 59f6a57e59
413 changed files with 4472 additions and 4460 deletions

View File

@ -18,8 +18,8 @@
*/
int add_one(int arg);
char16 *concat16(char16 * arg1, char16 * arg2);
text *copytext(text * t);
char16 *concat16(char16 *arg1, char16 *arg2);
text *copytext(text *t);
bool
c_overpaid(TUPLE t, /* the current instance of EMP */
@ -34,7 +34,7 @@ add_one(int arg)
}
char16 *
concat16(char16 * arg1, char16 * arg2)
concat16(char16 *arg1, char16 *arg2)
{
char16 *new_c16 = (char16 *) palloc(sizeof(char16));
@ -44,7 +44,7 @@ concat16(char16 * arg1, char16 * arg2)
}
text *
copytext(text * t)
copytext(text *t)
{
/*