summaryrefslogtreecommitdiff
path: root/src/include/postgres.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-10-25 05:50:21 +0000
committerBruce Momjian <bruce@momjian.us>2001-10-25 05:50:21 +0000
commitb81844b1738c584d92330a5ccd0fbd8b603d2886 (patch)
tree4fae0d4cd26048177fc5cd1a2dd91abc99ba0f99 /src/include/postgres.h
parent59da2105d8e6d95345b3b942a2e2aba8cead4838 (diff)
downloadpostgresql-b81844b1738c584d92330a5ccd0fbd8b603d2886.tar.gz
pgindent run on all C files. Java run to follow. initdb/regression
tests pass.
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r--src/include/postgres.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h
index 3ae7bc44f8..39c6fffdca 100644
--- a/src/include/postgres.h
+++ b/src/include/postgres.h
@@ -10,7 +10,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1995, Regents of the University of California
*
- * $Id: postgres.h,v 1.53 2001/10/03 21:58:28 tgl Exp $
+ * $Id: postgres.h,v 1.54 2001/10/25 05:49:54 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -77,7 +77,7 @@ typedef struct varattrib
int32 va_extsize; /* External saved size */
Oid va_valueid; /* Unique identifier of value */
Oid va_toastrelid; /* RelID where to find chunks */
- } va_external;/* External stored attribute */
+ } va_external; /* External stored attribute */
char va_data[1]; /* Plain stored attribute */
} va_content;
@@ -533,7 +533,6 @@ extern DLLIMPORT bool assert_enabled;
#define AssertState(condition) \
Trap(!(condition), BadState)
-
#endif /* USE_ASSERT_CHECKING */
/*
@@ -563,7 +562,8 @@ extern int ExceptionalCondition(char *conditionName,
Exception *exceptionP, char *details,
char *fileName, int lineNumber);
-extern char *vararg_format(const char *fmt, ...)
+extern char *
+vararg_format(const char *fmt,...)
/* This lets gcc check the format string for consistency. */
__attribute__((format(printf, 1, 2)));
@@ -587,16 +587,14 @@ __attribute__((format(printf, 1, 2)));
#ifdef ASSERT_CHECKING_TEST
extern int assertTest(int val);
-
#endif
-
#endif /* USE_ASSERT_CHECKING */
/* ----------------------------------------------------------------
* Section 4: genbki macros used by catalog/pg_xxx.h files
* ----------------------------------------------------------------
*/
-#define CATALOG(x) typedef struct CppConcat(FormData_,x)
+#define CATALOG(x) typedef struct CppConcat(FormData_,x)
#define BOOTSTRAP
@@ -611,5 +609,4 @@ extern int assertTest(int val);
typedef int4 aclitem; /* PHONY definition for catalog use only */
-
#endif /* POSTGRES_H */