mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
pgindent run for 9.0
This commit is contained in:
@ -1,18 +1,20 @@
|
||||
|
||||
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;
|
||||
|
Reference in New Issue
Block a user