]> granicus.if.org Git - postgresql/commitdiff
Added missing #includes pointed out by Keith Parks
authorMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 05:25:44 +0000 (05:25 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 05:25:44 +0000 (05:25 +0000)
src/backend/access/common/tupdesc.c

index 52239f0a02f77e2eb833a8a491e737b4ac6d4198..504935bd61805f1c494b7ff1ef6fdb3a0df877b8 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.9 1996/11/03 10:57:24 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.10 1996/11/05 05:25:44 scrappy Exp $
  *
  * NOTES
  *    some of the executor utility code such as "ExecTypeFromTL" should be
  *-------------------------------------------------------------------------
  */
 
+#include <stdio.h>
+
 #include "postgres.h"
 
 #include "parser/catalog_utils.h"
 #include "nodes/parsenodes.h"
 #include "utils/builtins.h"
 #include "utils/fcache.h"
-#include "utils/palloc.h"
 #include "utils/tqual.h"
+#include "utils/syscache.h"
 
 #ifndef HAVE_MEMMOVE
 # include "regex/utils.h"