aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2001-08-24 22:46:28 +0000
committerPeter Eisentraut <peter_e@gmx.net>2001-08-24 22:46:28 +0000
commitf5cda6d3f3584e4f7554696dfb34c1ab1f3aa113 (patch)
tree9711b9dd2e6194129ed88eb7d160ed3baed160df
parentae05b2fd43f9cee33b93b35a32330ac19e0825de (diff)
downloadpostgresql-f5cda6d3f3584e4f7554696dfb34c1ab1f3aa113.tar.gz
postgresql-f5cda6d3f3584e4f7554696dfb34c1ab1f3aa113.zip
c.h needs to include postgres_ext.h to be self-contained.
-rw-r--r--src/include/c.h3
-rw-r--r--src/include/postgres.h3
-rw-r--r--src/include/postgres_fe.h3
3 files changed, 4 insertions, 5 deletions
diff --git a/src/include/c.h b/src/include/c.h
index fc95d381d39..4a96810ca0a 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.99 2001/08/24 14:07:49 petere Exp $
+ * $Id: c.h,v 1.100 2001/08/24 22:46:28 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -50,6 +50,7 @@
*/
#include "pg_config.h"
+#include "postgres_ext.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/src/include/postgres.h b/src/include/postgres.h
index c40db19dab2..964f1eaef1f 100644
--- a/src/include/postgres.h
+++ b/src/include/postgres.h
@@ -10,7 +10,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1995, Regents of the University of California
*
- * $Id: postgres.h,v 1.51 2001/08/23 23:06:38 tgl Exp $
+ * $Id: postgres.h,v 1.52 2001/08/24 22:46:28 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -44,7 +44,6 @@
#ifndef POSTGRES_H
#define POSTGRES_H
-#include "postgres_ext.h"
#include "c.h"
#include "utils/elog.h"
#include "utils/palloc.h"
diff --git a/src/include/postgres_fe.h b/src/include/postgres_fe.h
index b76d43d7a36..58bff597209 100644
--- a/src/include/postgres_fe.h
+++ b/src/include/postgres_fe.h
@@ -11,14 +11,13 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1995, Regents of the University of California
*
- * $Id: postgres_fe.h,v 1.1 2001/02/10 02:31:28 tgl Exp $
+ * $Id: postgres_fe.h,v 1.2 2001/08/24 22:46:28 petere Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef POSTGRES_FE_H
#define POSTGRES_FE_H
-#include "postgres_ext.h"
#include "c.h"
#endif /* POSTGRES_FE_H */