summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorgeorgeps <georgeps>2005-08-17 23:48:33 (GMT)
committergeorgeps <georgeps>2005-08-17 23:48:33 (GMT)
commit6eddb8f0de3e700ac84b9c908f3f1d3d584587c9 (patch)
treeb16d454987782d44936750f557549eb91af7e6b6 /generic/tclBasic.c
parent6101d9e7080197f61686f31112f65009e8fb9cef (diff)
downloadtcl-6eddb8f0de3e700ac84b9c908f3f1d3d584587c9.zip
tcl-6eddb8f0de3e700ac84b9c908f3f1d3d584587c9.tar.gz
tcl-6eddb8f0de3e700ac84b9c908f3f1d3d584587c9.tar.bz2
Added static to prevent a namespace clash with BuiltinFuncTable.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 4414c52..04582b7 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.165 2005/08/05 18:50:27 kennykb Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.166 2005/08/17 23:48:33 georgeps Exp $
*/
#include "tclInt.h"
@@ -245,7 +245,7 @@ typedef struct {
Tcl_ObjCmdProc* objCmdProc; /* Procedure that evaluates the function */
ClientData clientData; /* Client data for the procedure */
} BuiltinFuncDef;
-BuiltinFuncDef BuiltinFuncTable[] = {
+static BuiltinFuncDef BuiltinFuncTable[] = {
{ "::tcl::mathfunc::abs", ExprAbsFunc, NULL },
{ "::tcl::mathfunc::acos", ExprUnaryFunc, (ClientData) acos },
{ "::tcl::mathfunc::asin", ExprUnaryFunc, (ClientData) asin },