]> granicus.if.org Git - postgresql/commitdiff
clean out include files of including other includes files except those
authorMarc G. Fournier <scrappy@hub.org>
Sat, 19 Oct 1996 03:58:34 +0000 (03:58 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 19 Oct 1996 03:58:34 +0000 (03:58 +0000)
absolutely required

src/include/access/tupdesc.h
src/include/nodes/pg_list.h

index b6cb6f447e7fbce261fc5767a056827b70be4781..8557fa607eb813fd206a5cf440ae311404f23e1d 100644 (file)
@@ -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 {
 /*------------------------------------------------------------------------ 
index 6612fbf95328928214fb469bfd8e65531be4fe6f..6c4d03b75aadce09c8ec72f50a3727cc08fa2a4c 100644 (file)
@@ -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"
 
 /* ----------------------------------------------------------------