diff options
author | andreas_kupries <andreas_kupries@noemail.net> | 2005-09-02 19:23:46 (GMT) |
---|---|---|
committer | andreas_kupries <andreas_kupries@noemail.net> | 2005-09-02 19:23:46 (GMT) |
commit | acbe8b5511b7db6d64f500f90ef8735c7ba0e200 (patch) | |
tree | a5dae4b20c88e9ac80c264ac19cc8c8217a51ab1 /generic/tclEncoding.c | |
parent | 9ef22d7eb1c3074092ce92be65135d8d40e177e7 (diff) | |
download | tcl-acbe8b5511b7db6d64f500f90ef8735c7ba0e200.zip tcl-acbe8b5511b7db6d64f500f90ef8735c7ba0e200.tar.gz tcl-acbe8b5511b7db6d64f500f90ef8735c7ba0e200.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.
FossilOrigin-Name: 5b652caf778a9ddb208ca2f07ce55c65fc33d061
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r-- | generic/tclEncoding.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c index 8108771..8d2d1fd 100644 --- a/generic/tclEncoding.c +++ b/generic/tclEncoding.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEncoding.c,v 1.36 2005/07/17 21:17:40 dkf Exp $ + * RCS: @(#) $Id: tclEncoding.c,v 1.37 2005/09/02 19:23:46 andreas_kupries Exp $ */ #include "tclInt.h" @@ -467,7 +467,7 @@ TclSetLibraryPath(path) *--------------------------------------------------------------------------- */ -void +static void FillEncodingFileMap() { int i, numDirs = 0; @@ -3242,7 +3242,7 @@ unilen(src) *------------------------------------------------------------------------- */ -void +static void InitializeEncodingSearchPath(valuePtr, lengthPtr, encodingPtr) char **valuePtr; int *lengthPtr; |