summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorBruce Momjian1999-05-26 12:57:23 +0000
committerBruce Momjian1999-05-26 12:57:23 +0000
commit278bbf4572996e4097eac0c0d169dea1616ad0b6 (patch)
tree240f44ee8338d26ad0ff7ce8d8e9733a0e3880df /src/pl
parent180186272ac16c74d2a822fee3878e576f265d08 (diff)
Make functions static or NOT_USED as appropriate.
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/tcl/pltcl.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c
index 5d05566ad4..62f94ec0ae 100644
--- a/src/pl/tcl/pltcl.c
+++ b/src/pl/tcl/pltcl.c
@@ -3,7 +3,7 @@
* procedural language (PL)
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.11 1999/05/25 22:43:51 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.12 1999/05/26 12:57:23 momjian Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
@@ -114,7 +114,7 @@ static void pltcl_init_load_unknown(void);
#endif /* PLTCL_UNKNOWN_SUPPORT */
Datum pltcl_call_handler(FmgrInfo *proinfo,
- FmgrValues *proargs, bool *isNull);
+ FmgrValues *proargs, bool *isNull);
static Datum pltcl_func_handler(FmgrInfo *proinfo,
FmgrValues *proargs, bool *isNull);
@@ -367,6 +367,8 @@ pltcl_init_load_unknown(void)
* call this function for execution of
* PL/Tcl procedures.
**********************************************************************/
+
+/* keep non-static */
Datum
pltcl_call_handler(FmgrInfo *proinfo,
FmgrValues *proargs,
@@ -404,7 +406,6 @@ pltcl_call_handler(FmgrInfo *proinfo,
return retval;
}
-
/**********************************************************************
* pltcl_func_handler() - Handler for regular function calls
**********************************************************************/