diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-10 22:06:35 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-10 22:06:35 (GMT) |
commit | d91dd05737b0bb70a82f70975fdcbfdbb622efe6 (patch) | |
tree | c27b036444ee22e4fa5c5dde4fa28da4bffc0867 /generic | |
parent | 412b228a373724da28869a817322e35f79547d57 (diff) | |
download | tcl-d91dd05737b0bb70a82f70975fdcbfdbb622efe6.zip tcl-d91dd05737b0bb70a82f70975fdcbfdbb622efe6.tar.gz tcl-d91dd05737b0bb70a82f70975fdcbfdbb622efe6.tar.bz2 |
Complete conversion to ANSI function definitions
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclExecute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 13844c1..da4a5fd 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.272 2007/04/10 14:47:14 dkf Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.273 2007/04/10 22:06:35 dkf Exp $ */ #include "tclInt.h" @@ -6796,8 +6796,8 @@ IllegalExprOperandType( */ void -TclGetSrcInfoForPc (cfPtr) - CmdFrame *cfPtr; +TclGetSrcInfoForPc( + CmdFrame *cfPtr) { ByteCode *codePtr = (ByteCode *) cfPtr->data.tebc.codePtr; |