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

Revert pgindent changes to ecpg include files that are part of ecpg

regession test output, and update pgindent script to avoid them in the
future.
This commit is contained in:
Bruce Momjian
2010-02-26 17:07:55 +00:00
parent 98c356c8ad
commit 2cc6ff45f8
4 changed files with 44 additions and 41 deletions

View File

@ -1,20 +1,18 @@
struct mytype
{
int id;
char t[64];
double d1; /* dec_t */
double d2;
char c[30];
struct mytype {
int id;
char t[64];
double d1; /* dec_t */
double d2;
char c[30];
};
typedef struct mytype MYTYPE;
struct mynulltype
{
int id;
int t;
int d1;
int d2;
int c;
struct mynulltype {
int id;
int t;
int d1;
int d2;
int c;
};
typedef struct mynulltype MYNULLTYPE;