diff options
Diffstat (limited to 'src/include/catalog/pg_time.h')
-rw-r--r-- | src/include/catalog/pg_time.h | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/src/include/catalog/pg_time.h b/src/include/catalog/pg_time.h index 5b35d73f25b..f1955930f06 100644 --- a/src/include/catalog/pg_time.h +++ b/src/include/catalog/pg_time.h @@ -1,19 +1,19 @@ /*------------------------------------------------------------------------- * * pg_time.h-- - * the system commit-time relation "pg_time" is not a "heap" relation. - * it is automatically created by the transam/ code and the - * information here is all bogus and is just here to make the - * relcache code happy. + * the system commit-time relation "pg_time" is not a "heap" relation. + * it is automatically created by the transam/ code and the + * information here is all bogus and is just here to make the + * relcache code happy. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_time.h,v 1.2 1996/10/31 09:47:58 scrappy Exp $ + * $Id: pg_time.h,v 1.3 1997/09/07 04:57:10 momjian Exp $ * * NOTES - * The structures and macros used by the transam/ code - * to access pg_time should some day go here -cim 6/18/90 + * The structures and macros used by the transam/ code + * to access pg_time should some day go here -cim 6/18/90 * *------------------------------------------------------------------------- */ @@ -21,20 +21,21 @@ #define PG_TIME_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. * ---------------- */ -CATALOG(pg_time) BOOTSTRAP { - Oid timefoo; +CATALOG(pg_time) BOOTSTRAP +{ + Oid timefoo; } FormData_pg_time; -typedef FormData_pg_time *Form_pg_time; +typedef FormData_pg_time *Form_pg_time; -#define Natts_pg_time 1 +#define Natts_pg_time 1 #define Anum_pg_time_timefoo 1 -#endif /* PG_TIME_H */ +#endif /* PG_TIME_H */ |