1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Massive commit to run PGINDENT on all *.c and *.h files.

This commit is contained in:
Bruce Momjian
1997-09-07 05:04:48 +00:00
parent 8fecd4febf
commit 1ccd423235
687 changed files with 150775 additions and 136888 deletions

View File

@ -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