diff options
author | hobbs <hobbs@noemail.net> | 2002-11-12 02:23:02 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2002-11-12 02:23:02 (GMT) |
commit | 932072013cd2cc616dfecea52ecc076f4ba5766c (patch) | |
tree | 41377e9c3ab023d44807b12bcfc903ab10e4cd36 /generic/tclVar.c | |
parent | f2a5ed6fa26b0f54a54e3caf5956b0a760a3670a (diff) | |
download | tcl-932072013cd2cc616dfecea52ecc076f4ba5766c.zip tcl-932072013cd2cc616dfecea52ecc076f4ba5766c.tar.gz tcl-932072013cd2cc616dfecea52ecc076f4ba5766c.tar.bz2 |
* generic/tclVar.c (DisposeTraceResult, CallVarTraces): add proper
static declarations.
FossilOrigin-Name: db7e22784e17d4bd74bec99104ac335937e481d9
Diffstat (limited to 'generic/tclVar.c')
-rw-r--r-- | generic/tclVar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclVar.c b/generic/tclVar.c index 28684cd..11868fd 100644 --- a/generic/tclVar.c +++ b/generic/tclVar.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclVar.c,v 1.68 2002/10/17 17:41:44 dgp Exp $ + * RCS: @(#) $Id: tclVar.c,v 1.69 2002/11/12 02:23:03 hobbs Exp $ */ #include "tclInt.h" @@ -4021,7 +4021,7 @@ Tcl_UpvarObjCmd(dummy, interp, objc, objv) *---------------------------------------------------------------------- */ -void +static void DisposeTraceResult(flags, result) int flags; /* Indicates type of result to determine * proper disposal method */ @@ -4059,7 +4059,7 @@ DisposeTraceResult(flags, result) *---------------------------------------------------------------------- */ -int +static int CallVarTraces(iPtr, arrayPtr, varPtr, part1, part2, flags, leaveErrMsg) Interp *iPtr; /* Interpreter containing variable. */ register Var *arrayPtr; /* Pointer to array variable that contains |