diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-07 05:04:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-07 05:04:48 +0000 |
commit | 1ccd423235a48739d6f7a4d7889705b5f9ecc69b (patch) | |
tree | 8001c4e839dfad8f29ceda7f8c5f5dbb8759b564 /src/include/catalog/pg_inheritproc.h | |
parent | 8fecd4febf8357f3cc20383ed29ced484877d5ac (diff) | |
download | postgresql-1ccd423235a48739d6f7a4d7889705b5f9ecc69b.tar.gz |
Massive commit to run PGINDENT on all *.c and *.h files.
Diffstat (limited to 'src/include/catalog/pg_inheritproc.h')
-rw-r--r-- | src/include/catalog/pg_inheritproc.h | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/src/include/catalog/pg_inheritproc.h b/src/include/catalog/pg_inheritproc.h index 5357c7ebfa..f53561a51c 100644 --- a/src/include/catalog/pg_inheritproc.h +++ b/src/include/catalog/pg_inheritproc.h @@ -1,17 +1,17 @@ /*------------------------------------------------------------------------- * * pg_inheritproc.h-- - * definition of the system "inheritproc" relation (pg_inheritproc) - * along with the relation's initial contents. + * definition of the system "inheritproc" relation (pg_inheritproc) + * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_inheritproc.h,v 1.2 1996/10/31 09:47:33 scrappy Exp $ + * $Id: pg_inheritproc.h,v 1.3 1997/09/07 04:56:50 momjian Exp $ * * NOTES - * the genbki.sh script reads this file and generates .bki - * information from the DATA() statements. + * the genbki.sh script reads this file and generates .bki + * information from the DATA() statements. * *------------------------------------------------------------------------- */ @@ -19,40 +19,41 @@ #define PG_INHERITPROC_H /* ---------------- - * postgres.h contains the system type definintions and the - * CATALOG(), BOOTSTRAP and DATA() sugar words so this file - * can be read by both genbki.sh and the C compiler. + * postgres.h contains the system type definintions and the + * CATALOG(), BOOTSTRAP and DATA() sugar words so this file + * can be read by both genbki.sh and the C compiler. * ---------------- */ /* ---------------- - * pg_inheritproc definition. cpp turns this into - * typedef struct FormData_pg_inheritproc + * pg_inheritproc definition. cpp turns this into + * typedef struct FormData_pg_inheritproc * ---------------- - */ -CATALOG(pg_inheritproc) { - NameData inhproname; - Oid inhargrel; - Oid inhdefrel; - Oid inhproc; + */ +CATALOG(pg_inheritproc) +{ + NameData inhproname; + Oid inhargrel; + Oid inhdefrel; + Oid inhproc; } FormData_pg_inheritproc; /* ---------------- - * Form_pg_inheritproc corresponds to a pointer to a tuple with - * the format of pg_inheritproc relation. + * Form_pg_inheritproc corresponds to a pointer to a tuple with + * the format of pg_inheritproc relation. * ---------------- */ -typedef FormData_pg_inheritproc *Form_pg_inheritproc; +typedef FormData_pg_inheritproc *Form_pg_inheritproc; /* ---------------- - * compiler constants for pg_inheritproc + * compiler constants for pg_inheritproc * ---------------- */ -#define Natts_pg_inheritproc 4 +#define Natts_pg_inheritproc 4 #define Anum_pg_inheritproc_inhproname 1 #define Anum_pg_inheritproc_inhargrel 2 #define Anum_pg_inheritproc_inhdefrel 3 -#define Anum_pg_inheritproc_inhproc 4 +#define Anum_pg_inheritproc_inhproc 4 -#endif /* PG_INHERITPROC_H */ +#endif /* PG_INHERITPROC_H */ |