diff options
author | andreask@activestate.com <andreas_kupries> | 2005-09-02 19:23:46 (GMT) |
---|---|---|
committer | andreask@activestate.com <andreas_kupries> | 2005-09-02 19:23:46 (GMT) |
commit | a688e52cb0c6cd1b8319c539cd27791502a68aa3 (patch) | |
tree | a5dae4b20c88e9ac80c264ac19cc8c8217a51ab1 /unix/tclUnixSock.c | |
parent | 13d972d65028362d1fafd2327bb480027fc24425 (diff) | |
download | tcl-a688e52cb0c6cd1b8319c539cd27791502a68aa3.zip tcl-a688e52cb0c6cd1b8319c539cd27791502a68aa3.tar.gz tcl-a688e52cb0c6cd1b8319c539cd27791502a68aa3.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 'unix/tclUnixSock.c')
-rw-r--r-- | unix/tclUnixSock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c index 6574935..3afbf55 100644 --- a/unix/tclUnixSock.c +++ b/unix/tclUnixSock.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: tclUnixSock.c,v 1.12 2005/07/13 20:01:02 dgp Exp $ + * RCS: @(#) $Id: tclUnixSock.c,v 1.13 2005/09/02 19:23:46 andreas_kupries Exp $ */ #include "tclInt.h" @@ -36,7 +36,7 @@ static ProcessGlobalValue hostName = *---------------------------------------------------------------------- */ -void +static void InitializeHostName(valuePtr, lengthPtr, encodingPtr) char **valuePtr; int *lengthPtr; |