diff options
| author | Bruce Momjian | 2001-10-25 05:50:21 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2001-10-25 05:50:21 +0000 |
| commit | 25a8ccbcb71d2b121f94abafe59f29420676f3cb (patch) | |
| tree | b548ae7abb247c1486fced19441b3d5beec1ecdb /src/include/postgres.h | |
| parent | eaa1184358e8fc1cca3bb3d83d1f1250111390d4 (diff) | |
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.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h index d15fbb5fe9..1f9631fbfe 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -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 */ |
