summaryrefslogtreecommitdiffstats
path: root/generic/tclListObj.c
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2005-09-02 19:23:46 (GMT)
committerandreas_kupries <akupries@shaw.ca>2005-09-02 19:23:46 (GMT)
commitb815af54ad0bf8718cfb7884757a5319462f928f (patch)
treea5dae4b20c88e9ac80c264ac19cc8c8217a51ab1 /generic/tclListObj.c
parentc49e462945bb21e0385119bf3e76707c6adc62b2 (diff)
downloadtcl-b815af54ad0bf8718cfb7884757a5319462f928f.zip
tcl-b815af54ad0bf8718cfb7884757a5319462f928f.tar.gz
tcl-b815af54ad0bf8718cfb7884757a5319462f928f.tar.bz2
* unix/tclUnixSock.c (InitializeHostName): Synchronized use of
static modifier in declaration and definition of function. * unix/tclUnixChan.c (FileTruncateProc): Synchronized use of static modifier in declaration and definition of function. * generic/tclResult.c (ReleaseKeys): Synchronized use of static modifier in declaration and definition of function. * generic/tclListObj.c (NewListIntRep): Synchronized use of static modifier in declaration and definition of function. * generic/tclEncoding.c (InitializeEncodingSearchPath): Synchronized use of static modifier in declaration and definition of function. * generic/tclEncoding.c (FillEncodingFileMap): Synchronized use of static modifier in declaration and definition of function. * generic/tclIORChan.c (RcNewHandle): Synchronized use of static modifier in declaration and definition of function.
Diffstat (limited to 'generic/tclListObj.c')
-rw-r--r--generic/tclListObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclListObj.c b/generic/tclListObj.c
index 1279a05..1488ecb 100644
--- a/generic/tclListObj.c
+++ b/generic/tclListObj.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: tclListObj.c,v 1.25 2005/08/25 21:48:41 dkf Exp $
+ * RCS: @(#) $Id: tclListObj.c,v 1.26 2005/09/02 19:23:46 andreas_kupries Exp $
*/
#include "tclInt.h"
@@ -74,7 +74,7 @@ Tcl_ObjType tclListType = {
*----------------------------------------------------------------------
*/
-List*
+static List*
NewListIntRep(objc, objv)
int objc;
Tcl_Obj *CONST objv[];