diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-10 22:01:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-10 22:01:57 (GMT) |
commit | 5b06412d7ee8a0775cc9be68d68e5aaa3e7d1ab4 (patch) | |
tree | d16283fea57c1ce76117ca2f2dd4e8cf20136b7d /generic/tclFileName.c | |
parent | a095d55c068257794461d06c5e709aee424b9679 (diff) | |
download | tcl-5b06412d7ee8a0775cc9be68d68e5aaa3e7d1ab4.zip tcl-5b06412d7ee8a0775cc9be68d68e5aaa3e7d1ab4.tar.gz tcl-5b06412d7ee8a0775cc9be68d68e5aaa3e7d1ab4.tar.bz2 |
Reformat to standard function definition form
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r-- | generic/tclFileName.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c index b9417d6..4de4604 100644 --- a/generic/tclFileName.c +++ b/generic/tclFileName.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclFileName.c,v 1.80 2007/04/10 14:47:15 dkf Exp $ + * RCS: @(#) $Id: tclFileName.c,v 1.81 2007/04/10 22:01:57 dkf Exp $ */ #include "tclInt.h" @@ -57,7 +57,10 @@ static int DoGlob(Tcl_Interp *interp, Tcl_Obj *resultPtr, */ static void -SetResultLength(Tcl_DString *resultPtr, int offset, int extended) +SetResultLength( + Tcl_DString *resultPtr, + int offset, + int extended) { Tcl_DStringSetLength(resultPtr, offset); if (extended == 2) { |