Header And Logo

PostgreSQL
| The world's most advanced open source database.

postgres_fe.h

Go to the documentation of this file.
00001 /*-------------------------------------------------------------------------
00002  *
00003  * postgres_fe.h
00004  *    Primary include file for PostgreSQL client-side .c files
00005  *
00006  * This should be the first file included by PostgreSQL client libraries and
00007  * application programs --- but not by backend modules, which should include
00008  * postgres.h.
00009  *
00010  *
00011  * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
00012  * Portions Copyright (c) 1995, Regents of the University of California
00013  *
00014  * src/include/postgres_fe.h
00015  *
00016  *-------------------------------------------------------------------------
00017  */
00018 #ifndef POSTGRES_FE_H
00019 #define POSTGRES_FE_H
00020 
00021 #ifndef FRONTEND
00022 #define FRONTEND 1
00023 #endif
00024 
00025 #include "c.h"
00026 
00027 #include "common/fe_memutils.h"
00028 
00029 #endif   /* POSTGRES_FE_H */