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/postgres_ext.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/postgres_ext.h')
-rw-r--r-- | src/include/postgres_ext.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/include/postgres_ext.h b/src/include/postgres_ext.h index b79b11fe1f..3a4554aee0 100644 --- a/src/include/postgres_ext.h +++ b/src/include/postgres_ext.h @@ -1,22 +1,22 @@ /*------------------------------------------------------------------------- * * postgres_ext.h-- - * - * This file contains declarations of things that are visible - * external to Postgres. For example, the Oid type is part of a - * structure that is passed to the front end via libpq, and is - * accordingly referenced in libpq-fe.h. * - * Declarations which are specific to a particular interface should - * go in the header file for that interface (such as libpq-fe.h). This - * file is only for fundamental Postgres declarations. + * This file contains declarations of things that are visible + * external to Postgres. For example, the Oid type is part of a + * structure that is passed to the front end via libpq, and is + * accordingly referenced in libpq-fe.h. * - * User-written C functions don't count as "external to Postgres." - * Those function much as local modifications to the backend itself, and - * use header files that are otherwise internal to Postgres to interface - * with the backend. + * Declarations which are specific to a particular interface should + * go in the header file for that interface (such as libpq-fe.h). This + * file is only for fundamental Postgres declarations. * - * $Id: postgres_ext.h,v 1.1 1996/12/10 07:03:43 bryanh Exp $ + * User-written C functions don't count as "external to Postgres." + * Those function much as local modifications to the backend itself, and + * use header files that are otherwise internal to Postgres to interface + * with the backend. + * + * $Id: postgres_ext.h,v 1.2 1997/09/07 04:55:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -30,10 +30,10 @@ typedef unsigned int Oid; * attribute names, function names, etc.) * * NOTE that databases with different NAMEDATALEN's cannot interoperate! - */ + */ #define NAMEDATALEN 32 /* OIDNAMELEN should be set to NAMEDATALEN + sizeof(Oid) */ -#define OIDNAMELEN 36 +#define OIDNAMELEN 36 #endif |