2001-02-09 21:31:31 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* postgres_fe.h
|
|
|
|
|
* Primary include file for PostgreSQL client-side .c files
|
|
|
|
|
*
|
|
|
|
|
* This should be the first file included by PostgreSQL client libraries and
|
|
|
|
|
* application programs --- but not by backend modules, which should include
|
|
|
|
|
* postgres.h.
|
|
|
|
|
*
|
|
|
|
|
*
|
2007-01-05 17:20:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
2001-02-09 21:31:31 -05:00
|
|
|
* Portions Copyright (c) 1995, Regents of the University of California
|
|
|
|
|
*
|
2007-01-05 17:20:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/postgres_fe.h,v 1.12 2007/01/05 22:19:50 momjian Exp $
|
2001-02-09 21:31:31 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef POSTGRES_FE_H
|
|
|
|
|
#define POSTGRES_FE_H
|
|
|
|
|
|
|
|
|
|
#include "c.h"
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* POSTGRES_FE_H */
|