1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Make functions static or NOT_USED as appropriate.

This commit is contained in:
Bruce Momjian
1999-05-26 12:57:23 +00:00
parent 180186272a
commit 278bbf4572
34 changed files with 122 additions and 152 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/Attic/freefuncs.c,v 1.18 1999/05/25 22:41:13 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/Attic/freefuncs.c,v 1.19 1999/05/26 12:55:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -35,6 +35,7 @@
* plannodes.h free functions
* ****************************************************************
*/
static void freeObject(void *obj);
/* ----------------
* FreePlanFields
@@ -1157,7 +1158,7 @@ _freeValue(Value *node)
* recursively frees its items.
* ----------------
*/
void
static void
freeObject(void *node)
{
if (node == NULL)