diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-11-10 03:06:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-11-10 03:06:38 +0000 |
commit | aaeef4d17db9ded501fa02c9ca6c00f86258b171 (patch) | |
tree | 7f27c0c7519886eda3b9ddd6fe1eb4a9d628dacb /src/backend/nodes/print.c | |
parent | bf5cbbf7895aa16b2e18dbe29462a4fd8baf4293 (diff) | |
download | postgresql-aaeef4d17db9ded501fa02c9ca6c00f86258b171.tar.gz postgresql-aaeef4d17db9ded501fa02c9ca6c00f86258b171.zip |
All external function definitions now have prototypes that are checked.
Diffstat (limited to 'src/backend/nodes/print.c')
-rw-r--r-- | src/backend/nodes/print.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/nodes/print.c b/src/backend/nodes/print.c index 2bd39dd4fda..fd65f8b21a2 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.2 1996/11/06 08:54:17 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.3 1996/11/10 03:00:49 momjian Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -24,6 +24,7 @@ #include "nodes/pg_list.h" #include "nodes/execnodes.h" #include "nodes/parsenodes.h" +#include "nodes/print.h" #include "parser/parsetree.h" #include "parser/catalog_utils.h" #include "access/heapam.h" @@ -377,3 +378,4 @@ print_plan (Plan* p, Query* parsetree) } + |