diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 08:54:17 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 08:54:17 +0000 |
commit | 83d93d437b765f1448c763a3c0ebf29832a0fd1c (patch) | |
tree | da8cb3eea5d7465659dde3c2006b193fecb04030 /src/backend/nodes/print.c | |
parent | e0b772cc006a3168a23995b0411624fb4d367409 (diff) | |
download | postgresql-83d93d437b765f1448c763a3c0ebf29832a0fd1c.tar.gz postgresql-83d93d437b765f1448c763a3c0ebf29832a0fd1c.zip |
Just a couple of small mods
Diffstat (limited to 'src/backend/nodes/print.c')
-rw-r--r-- | src/backend/nodes/print.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/nodes/print.c b/src/backend/nodes/print.c index 0297b445b10..2bd39dd4fda 100644 --- a/src/backend/nodes/print.c +++ b/src/backend/nodes/print.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.1.1.1 1996/07/09 06:21:33 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.2 1996/11/06 08:54:17 scrappy Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -16,12 +16,14 @@ *------------------------------------------------------------------------- */ #include <stdio.h> +#include <string.h> + #include "postgres.h" + #include "access/printtup.h" #include "nodes/pg_list.h" #include "nodes/execnodes.h" #include "nodes/parsenodes.h" - #include "parser/parsetree.h" #include "parser/catalog_utils.h" #include "access/heapam.h" |