diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-08 21:56:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-08 21:56:23 +0000 |
commit | 59f6a57e59fe8353f9edaa3703516ea67e06672b (patch) | |
tree | 1b083fb66cf0be3890480a1ed5fb077dd7293790 /src/include/postgres.h | |
parent | 075cede74858a9a04e97097b1ccd555121516c20 (diff) | |
download | postgresql-59f6a57e59fe8353f9edaa3703516ea67e06672b.tar.gz postgresql-59f6a57e59fe8353f9edaa3703516ea67e06672b.zip |
Used modified version of indent that understands over 100 typedefs.
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r-- | src/include/postgres.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h index 706dcc1a41b..37d966cf2f4 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -6,7 +6,7 @@ * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.8 1997/09/08 02:33:54 momjian Exp $ + * $Id: postgres.h,v 1.9 1997/09/08 21:50:28 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -91,7 +91,7 @@ typedef struct varlena text; typedef struct char8 { char data[8]; -} char8; +} char8; /* ---------------- * char16 @@ -100,7 +100,7 @@ typedef struct char8 typedef struct char16 { char data[16]; -} char16; +} char16; typedef char16 *Char16; @@ -110,7 +110,7 @@ typedef Oid oid8[8]; typedef struct nameData { char data[NAMEDATALEN]; -} NameData; +} NameData; typedef NameData *Name; /* ---------------- @@ -123,7 +123,7 @@ typedef struct OidInt4Data { Oid oi_oid; int32 oi_int4; -} OidInt4Data; +} OidInt4Data; typedef struct OidInt4Data *OidInt4; @@ -137,7 +137,7 @@ typedef struct OidInt2Data { Oid oi_oid; int16 oi_int2; -} OidInt2Data; +} OidInt2Data; typedef struct OidInt2Data *OidInt2; @@ -151,7 +151,7 @@ typedef struct OidNameData { Oid id; NameData name; -} OidNameData; +} OidNameData; typedef struct OidNameData *OidName; |