From d9ebe7711f8d8ffd95ea35d8884718ced8b03d2d Mon Sep 17 00:00:00 2001
From: "Marc G. Fournier" <scrappy@hub.org>
Date: Sat, 19 Oct 1996 03:58:34 +0000
Subject: [PATCH] clean out include files of including other includes files
 except those absolutely required

---
 src/include/access/tupdesc.h | 8 +++-----
 src/include/nodes/pg_list.h  | 4 +---
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/include/access/tupdesc.h b/src/include/access/tupdesc.h
index b6cb6f447e7..8557fa607eb 100644
--- a/src/include/access/tupdesc.h
+++ b/src/include/access/tupdesc.h
@@ -6,18 +6,16 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: tupdesc.h,v 1.2 1996/09/16 05:33:13 scrappy Exp $
+ * $Id: tupdesc.h,v 1.3 1996/10/19 03:58:34 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef	TUPDESC_H
 #define TUPDESC_H
 
-#include "postgres.h"
-#include "access/attnum.h"
-#include "nodes/pg_list.h"	/* for List */
 #include "catalog/pg_attribute.h"
-
+#include "access/attnum.h"
+#include "nodes/pg_list.h"
 
 typedef struct tupleDesc {
 /*------------------------------------------------------------------------ 
diff --git a/src/include/nodes/pg_list.h b/src/include/nodes/pg_list.h
index 6612fbf9532..6c4d03b75aa 100644
--- a/src/include/nodes/pg_list.h
+++ b/src/include/nodes/pg_list.h
@@ -6,15 +6,13 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_list.h,v 1.1 1996/08/28 01:57:42 scrappy Exp $
+ * $Id: pg_list.h,v 1.2 1996/10/19 03:58:29 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef	PG_LIST_H
 #define	PG_LIST_H
 
-#include <stdio.h>
-#include "c.h"
 #include "nodes/nodes.h"
 
 /* ----------------------------------------------------------------
-- 
GitLab