head	1.3;
access;
symbols
	rel-5-2:1.2
	rel-5-1-patches:1.2.0.2
	rel-5-1:1.2
	rel-5-0:1.1
	rel-5-0beta:1.1;
locks; strict;
comment	@# @;


1.3
date	2000.12.06.21.20.49;	author bparker;	state dead;
branches;
next	1.2;

1.2
date	99.10.19.19.36.24;	author jra;	state Exp;
branches
	1.2.2.1;
next	1.1;

1.1
date	98.06.02.19.43.13;	author jra;	state Exp;
branches;
next	;

1.2.2.1
date	2000.12.06.21.26.10;	author bparker;	state dead;
branches;
next	;


desc
@Original
@


1.3
log
@Upgrading to newer version
@
text
@#!/bin/sh
# This script is invoked when installing manual entries.  It generates
# additional links to manual entries, corresponding to the procedure
# and command names described by the manual entry.  For example, the
# Tcl manual entry Hash.3 describes procedures Tcl_InitHashTable,
# Tcl_CreateHashEntry, and many more.  This script will make hard
# links so that Tcl_InitHashTable.3, Tcl_CreateHashEntry.3, and so
# on all refer to Hash.3 in the installed directory.
#
# Because of the length of command and procedure names, this mechanism
# only works on machines that support file names longer than 14 characters.
# This script checks to see if long file names are supported, and it
# doesn't make any links if they are not.
#
# The script takes one argument, which is the name of the directory
# where the manual entries have been installed.

if test $# != 1; then
    echo "Usage: mkLinks dir"
    exit 1
fi

cd $1
echo foo > xyzzyTestingAVeryLongFileName.foo
x=`echo xyzzyTe*`
rm xyzzyTe*
if test "$x" != "xyzzyTestingAVeryLongFileName.foo"; then
    exit
fi

if test -r Access.3; then
    rm -f Tcl_Access.3
    ln Access.3 Tcl_Access.3
fi
if test -r Access.3; then
    rm -f Tcl_Stat.3
    ln Access.3 Tcl_Stat.3
fi
if test -r AddErrInfo.3; then
    rm -f Tcl_AddObjErrorInfo.3
    ln AddErrInfo.3 Tcl_AddObjErrorInfo.3
fi
if test -r AddErrInfo.3; then
    rm -f Tcl_AddErrorInfo.3
    ln AddErrInfo.3 Tcl_AddErrorInfo.3
fi
if test -r AddErrInfo.3; then
    rm -f Tcl_SetErrorCode.3
    ln AddErrInfo.3 Tcl_SetErrorCode.3
fi
if test -r AddErrInfo.3; then
    rm -f Tcl_SetErrorCodeVA.3
    ln AddErrInfo.3 Tcl_SetErrorCodeVA.3
fi
if test -r AddErrInfo.3; then
    rm -f Tcl_PosixError.3
    ln AddErrInfo.3 Tcl_PosixError.3
fi
if test -r Alloc.3; then
    rm -f Tcl_Alloc.3
    ln Alloc.3 Tcl_Alloc.3
fi
if test -r Alloc.3; then
    rm -f Tcl_Free.3
    ln Alloc.3 Tcl_Free.3
fi
if test -r Alloc.3; then
    rm -f Tcl_Realloc.3
    ln Alloc.3 Tcl_Realloc.3
fi
if test -r AllowExc.3; then
    rm -f Tcl_AllowExceptions.3
    ln AllowExc.3 Tcl_AllowExceptions.3
fi
if test -r AppInit.3; then
    rm -f Tcl_AppInit.3
    ln AppInit.3 Tcl_AppInit.3
fi
if test -r AssocData.3; then
    rm -f Tcl_GetAssocData.3
    ln AssocData.3 Tcl_GetAssocData.3
fi
if test -r AssocData.3; then
    rm -f Tcl_SetAssocData.3
    ln AssocData.3 Tcl_SetAssocData.3
fi
if test -r AssocData.3; then
    rm -f Tcl_DeleteAssocData.3
    ln AssocData.3 Tcl_DeleteAssocData.3
fi
if test -r Async.3; then
    rm -f Tcl_AsyncCreate.3
    ln Async.3 Tcl_AsyncCreate.3
fi
if test -r Async.3; then
    rm -f Tcl_AsyncMark.3
    ln Async.3 Tcl_AsyncMark.3
fi
if test -r Async.3; then
    rm -f Tcl_AsyncInvoke.3
    ln Async.3 Tcl_AsyncInvoke.3
fi
if test -r Async.3; then
    rm -f Tcl_AsyncDelete.3
    ln Async.3 Tcl_AsyncDelete.3
fi
if test -r Async.3; then
    rm -f Tcl_AsyncReady.3
    ln Async.3 Tcl_AsyncReady.3
fi
if test -r BackgdErr.3; then
    rm -f Tcl_BackgroundError.3
    ln BackgdErr.3 Tcl_BackgroundError.3
fi
if test -r Backslash.3; then
    rm -f Tcl_Backslash.3
    ln Backslash.3 Tcl_Backslash.3
fi
if test -r BoolObj.3; then
    rm -f Tcl_NewBooleanObj.3
    ln BoolObj.3 Tcl_NewBooleanObj.3
fi
if test -r BoolObj.3; then
    rm -f Tcl_SetBooleanObj.3
    ln BoolObj.3 Tcl_SetBooleanObj.3
fi
if test -r BoolObj.3; then
    rm -f Tcl_GetBooleanFromObj.3
    ln BoolObj.3 Tcl_GetBooleanFromObj.3
fi
if test -r ByteArrObj.3; then
    rm -f Tcl_NewByteArrayObj.3
    ln ByteArrObj.3 Tcl_NewByteArrayObj.3
fi
if test -r ByteArrObj.3; then
    rm -f Tcl_SetByteArrayObj.3
    ln ByteArrObj.3 Tcl_SetByteArrayObj.3
fi
if test -r ByteArrObj.3; then
    rm -f Tcl_GetByteArrayFromObj.3
    ln ByteArrObj.3 Tcl_GetByteArrayFromObj.3
fi
if test -r ByteArrObj.3; then
    rm -f Tcl_SetByteArrayLength.3
    ln ByteArrObj.3 Tcl_SetByteArrayLength.3
fi
if test -r CallDel.3; then
    rm -f Tcl_CallWhenDeleted.3
    ln CallDel.3 Tcl_CallWhenDeleted.3
fi
if test -r CallDel.3; then
    rm -f Tcl_DontCallWhenDeleted.3
    ln CallDel.3 Tcl_DontCallWhenDeleted.3
fi
if test -r ChnlStack.3; then
    rm -f Tcl_StackChannel.3
    ln ChnlStack.3 Tcl_StackChannel.3
fi
if test -r ChnlStack.3; then
    rm -f Tcl_UnstackChannel.3
    ln ChnlStack.3 Tcl_UnstackChannel.3
fi
if test -r CmdCmplt.3; then
    rm -f Tcl_CommandComplete.3
    ln CmdCmplt.3 Tcl_CommandComplete.3
fi
if test -r Concat.3; then
    rm -f Tcl_Concat.3
    ln Concat.3 Tcl_Concat.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_CreateChannel.3
    ln CrtChannel.3 Tcl_CreateChannel.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelInstanceData.3
    ln CrtChannel.3 Tcl_GetChannelInstanceData.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelType.3
    ln CrtChannel.3 Tcl_GetChannelType.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelName.3
    ln CrtChannel.3 Tcl_GetChannelName.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelHandle.3
    ln CrtChannel.3 Tcl_GetChannelHandle.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelMode.3
    ln CrtChannel.3 Tcl_GetChannelMode.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelBufferSize.3
    ln CrtChannel.3 Tcl_GetChannelBufferSize.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_SetChannelBufferSize.3
    ln CrtChannel.3 Tcl_SetChannelBufferSize.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_NotifyChannel.3
    ln CrtChannel.3 Tcl_NotifyChannel.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_BadChannelOption.3
    ln CrtChannel.3 Tcl_BadChannelOption.3
fi
if test -r CrtChnlHdlr.3; then
    rm -f Tcl_CreateChannelHandler.3
    ln CrtChnlHdlr.3 Tcl_CreateChannelHandler.3
fi
if test -r CrtChnlHdlr.3; then
    rm -f Tcl_DeleteChannelHandler.3
    ln CrtChnlHdlr.3 Tcl_DeleteChannelHandler.3
fi
if test -r CrtCloseHdlr.3; then
    rm -f Tcl_CreateCloseHandler.3
    ln CrtCloseHdlr.3 Tcl_CreateCloseHandler.3
fi
if test -r CrtCloseHdlr.3; then
    rm -f Tcl_DeleteCloseHandler.3
    ln CrtCloseHdlr.3 Tcl_DeleteCloseHandler.3
fi
if test -r CrtCommand.3; then
    rm -f Tcl_CreateCommand.3
    ln CrtCommand.3 Tcl_CreateCommand.3
fi
if test -r CrtFileHdlr.3; then
    rm -f Tcl_CreateFileHandler.3
    ln CrtFileHdlr.3 Tcl_CreateFileHandler.3
fi
if test -r CrtFileHdlr.3; then
    rm -f Tcl_DeleteFileHandler.3
    ln CrtFileHdlr.3 Tcl_DeleteFileHandler.3
fi
if test -r CrtInterp.3; then
    rm -f Tcl_CreateInterp.3
    ln CrtInterp.3 Tcl_CreateInterp.3
fi
if test -r CrtInterp.3; then
    rm -f Tcl_DeleteInterp.3
    ln CrtInterp.3 Tcl_DeleteInterp.3
fi
if test -r CrtInterp.3; then
    rm -f Tcl_InterpDeleted.3
    ln CrtInterp.3 Tcl_InterpDeleted.3
fi
if test -r CrtMathFnc.3; then
    rm -f Tcl_CreateMathFunc.3
    ln CrtMathFnc.3 Tcl_CreateMathFunc.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_CreateObjCommand.3
    ln CrtObjCmd.3 Tcl_CreateObjCommand.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_DeleteCommand.3
    ln CrtObjCmd.3 Tcl_DeleteCommand.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_DeleteCommandFromToken.3
    ln CrtObjCmd.3 Tcl_DeleteCommandFromToken.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_GetCommandInfo.3
    ln CrtObjCmd.3 Tcl_GetCommandInfo.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_SetCommandInfo.3
    ln CrtObjCmd.3 Tcl_SetCommandInfo.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_GetCommandName.3
    ln CrtObjCmd.3 Tcl_GetCommandName.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_IsSafe.3
    ln CrtSlave.3 Tcl_IsSafe.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_MakeSafe.3
    ln CrtSlave.3 Tcl_MakeSafe.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_CreateSlave.3
    ln CrtSlave.3 Tcl_CreateSlave.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_GetSlave.3
    ln CrtSlave.3 Tcl_GetSlave.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_GetMaster.3
    ln CrtSlave.3 Tcl_GetMaster.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_GetInterpPath.3
    ln CrtSlave.3 Tcl_GetInterpPath.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_CreateAlias.3
    ln CrtSlave.3 Tcl_CreateAlias.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_CreateAliasObj.3
    ln CrtSlave.3 Tcl_CreateAliasObj.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_GetAlias.3
    ln CrtSlave.3 Tcl_GetAlias.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_GetAliasObj.3
    ln CrtSlave.3 Tcl_GetAliasObj.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_ExposeCommand.3
    ln CrtSlave.3 Tcl_ExposeCommand.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_HideCommand.3
    ln CrtSlave.3 Tcl_HideCommand.3
fi
if test -r CrtTimerHdlr.3; then
    rm -f Tcl_CreateTimerHandler.3
    ln CrtTimerHdlr.3 Tcl_CreateTimerHandler.3
fi
if test -r CrtTimerHdlr.3; then
    rm -f Tcl_DeleteTimerHandler.3
    ln CrtTimerHdlr.3 Tcl_DeleteTimerHandler.3
fi
if test -r CrtTrace.3; then
    rm -f Tcl_CreateTrace.3
    ln CrtTrace.3 Tcl_CreateTrace.3
fi
if test -r CrtTrace.3; then
    rm -f Tcl_DeleteTrace.3
    ln CrtTrace.3 Tcl_DeleteTrace.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringInit.3
    ln DString.3 Tcl_DStringInit.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringAppend.3
    ln DString.3 Tcl_DStringAppend.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringAppendElement.3
    ln DString.3 Tcl_DStringAppendElement.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringStartSublist.3
    ln DString.3 Tcl_DStringStartSublist.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringEndSublist.3
    ln DString.3 Tcl_DStringEndSublist.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringLength.3
    ln DString.3 Tcl_DStringLength.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringValue.3
    ln DString.3 Tcl_DStringValue.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringSetLength.3
    ln DString.3 Tcl_DStringSetLength.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringFree.3
    ln DString.3 Tcl_DStringFree.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringResult.3
    ln DString.3 Tcl_DStringResult.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringGetResult.3
    ln DString.3 Tcl_DStringGetResult.3
fi
if test -r DetachPids.3; then
    rm -f Tcl_DetachPids.3
    ln DetachPids.3 Tcl_DetachPids.3
fi
if test -r DetachPids.3; then
    rm -f Tcl_ReapDetachedProcs.3
    ln DetachPids.3 Tcl_ReapDetachedProcs.3
fi
if test -r DoOneEvent.3; then
    rm -f Tcl_DoOneEvent.3
    ln DoOneEvent.3 Tcl_DoOneEvent.3
fi
if test -r DoWhenIdle.3; then
    rm -f Tcl_DoWhenIdle.3
    ln DoWhenIdle.3 Tcl_DoWhenIdle.3
fi
if test -r DoWhenIdle.3; then
    rm -f Tcl_CancelIdleCall.3
    ln DoWhenIdle.3 Tcl_CancelIdleCall.3
fi
if test -r DoubleObj.3; then
    rm -f Tcl_NewDoubleObj.3
    ln DoubleObj.3 Tcl_NewDoubleObj.3
fi
if test -r DoubleObj.3; then
    rm -f Tcl_SetDoubleObj.3
    ln DoubleObj.3 Tcl_SetDoubleObj.3
fi
if test -r DoubleObj.3; then
    rm -f Tcl_GetDoubleFromObj.3
    ln DoubleObj.3 Tcl_GetDoubleFromObj.3
fi
if test -r Encoding.3; then
    rm -f Tcl_GetEncoding.3
    ln Encoding.3 Tcl_GetEncoding.3
fi
if test -r Encoding.3; then
    rm -f Tcl_FreeEncoding.3
    ln Encoding.3 Tcl_FreeEncoding.3
fi
if test -r Encoding.3; then
    rm -f Tcl_ExternalToUtfDString.3
    ln Encoding.3 Tcl_ExternalToUtfDString.3
fi
if test -r Encoding.3; then
    rm -f Tcl_ExternalToUtf.3
    ln Encoding.3 Tcl_ExternalToUtf.3
fi
if test -r Encoding.3; then
    rm -f Tcl_UtfToExternalDString.3
    ln Encoding.3 Tcl_UtfToExternalDString.3
fi
if test -r Encoding.3; then
    rm -f Tcl_UtfToExternal.3
    ln Encoding.3 Tcl_UtfToExternal.3
fi
if test -r Encoding.3; then
    rm -f Tcl_WinTCharToUtf.3
    ln Encoding.3 Tcl_WinTCharToUtf.3
fi
if test -r Encoding.3; then
    rm -f Tcl_WinUtfToTChar.3
    ln Encoding.3 Tcl_WinUtfToTChar.3
fi
if test -r Encoding.3; then
    rm -f Tcl_GetEncodingName.3
    ln Encoding.3 Tcl_GetEncodingName.3
fi
if test -r Encoding.3; then
    rm -f Tcl_SetSystemEncoding.3
    ln Encoding.3 Tcl_SetSystemEncoding.3
fi
if test -r Encoding.3; then
    rm -f Tcl_GetEncodingNames.3
    ln Encoding.3 Tcl_GetEncodingNames.3
fi
if test -r Encoding.3; then
    rm -f Tcl_CreateEncoding.3
    ln Encoding.3 Tcl_CreateEncoding.3
fi
if test -r Encoding.3; then
    rm -f Tcl_GetDefaultEncodingDir.3
    ln Encoding.3 Tcl_GetDefaultEncodingDir.3
fi
if test -r Encoding.3; then
    rm -f Tcl_SetDefaultEncodingDir.3
    ln Encoding.3 Tcl_SetDefaultEncodingDir.3
fi
if test -r Eval.3; then
    rm -f Tcl_EvalObjEx.3
    ln Eval.3 Tcl_EvalObjEx.3
fi
if test -r Eval.3; then
    rm -f Tcl_EvalFile.3
    ln Eval.3 Tcl_EvalFile.3
fi
if test -r Eval.3; then
    rm -f Tcl_EvalObjv.3
    ln Eval.3 Tcl_EvalObjv.3
fi
if test -r Eval.3; then
    rm -f Tcl_Eval.3
    ln Eval.3 Tcl_Eval.3
fi
if test -r Eval.3; then
    rm -f Tcl_EvalEx.3
    ln Eval.3 Tcl_EvalEx.3
fi
if test -r Eval.3; then
    rm -f Tcl_GlobalEval.3
    ln Eval.3 Tcl_GlobalEval.3
fi
if test -r Eval.3; then
    rm -f Tcl_GlobalEvalObj.3
    ln Eval.3 Tcl_GlobalEvalObj.3
fi
if test -r Eval.3; then
    rm -f Tcl_VarEval.3
    ln Eval.3 Tcl_VarEval.3
fi
if test -r Eval.3; then
    rm -f Tcl_VarEvalVA.3
    ln Eval.3 Tcl_VarEvalVA.3
fi
if test -r Exit.3; then
    rm -f Tcl_Exit.3
    ln Exit.3 Tcl_Exit.3
fi
if test -r Exit.3; then
    rm -f Tcl_Finalize.3
    ln Exit.3 Tcl_Finalize.3
fi
if test -r Exit.3; then
    rm -f Tcl_FinalizeThread.3
    ln Exit.3 Tcl_FinalizeThread.3
fi
if test -r Exit.3; then
    rm -f Tcl_CreateExitHandler.3
    ln Exit.3 Tcl_CreateExitHandler.3
fi
if test -r Exit.3; then
    rm -f Tcl_DeleteExitHandler.3
    ln Exit.3 Tcl_DeleteExitHandler.3
fi
if test -r Exit.3; then
    rm -f Tcl_CreateThreadExitHandler.3
    ln Exit.3 Tcl_CreateThreadExitHandler.3
fi
if test -r Exit.3; then
    rm -f Tcl_DeleteThreadExitHandler.3
    ln Exit.3 Tcl_DeleteThreadExitHandler.3
fi
if test -r ExprLong.3; then
    rm -f Tcl_ExprLong.3
    ln ExprLong.3 Tcl_ExprLong.3
fi
if test -r ExprLong.3; then
    rm -f Tcl_ExprDouble.3
    ln ExprLong.3 Tcl_ExprDouble.3
fi
if test -r ExprLong.3; then
    rm -f Tcl_ExprBoolean.3
    ln ExprLong.3 Tcl_ExprBoolean.3
fi
if test -r ExprLong.3; then
    rm -f Tcl_ExprString.3
    ln ExprLong.3 Tcl_ExprString.3
fi
if test -r ExprLongObj.3; then
    rm -f Tcl_ExprLongObj.3
    ln ExprLongObj.3 Tcl_ExprLongObj.3
fi
if test -r ExprLongObj.3; then
    rm -f Tcl_ExprDoubleObj.3
    ln ExprLongObj.3 Tcl_ExprDoubleObj.3
fi
if test -r ExprLongObj.3; then
    rm -f Tcl_ExprBooleanObj.3
    ln ExprLongObj.3 Tcl_ExprBooleanObj.3
fi
if test -r ExprLongObj.3; then
    rm -f Tcl_ExprObj.3
    ln ExprLongObj.3 Tcl_ExprObj.3
fi
if test -r FindExec.3; then
    rm -f Tcl_FindExecutable.3
    ln FindExec.3 Tcl_FindExecutable.3
fi
if test -r FindExec.3; then
    rm -f Tcl_GetNameOfExecutable.3
    ln FindExec.3 Tcl_GetNameOfExecutable.3
fi
if test -r GetCwd.3; then
    rm -f Tcl_GetCwd.3
    ln GetCwd.3 Tcl_GetCwd.3
fi
if test -r GetCwd.3; then
    rm -f Tcl_Chdir.3
    ln GetCwd.3 Tcl_Chdir.3
fi
if test -r GetIndex.3; then
    rm -f Tcl_GetIndexFromObj.3
    ln GetIndex.3 Tcl_GetIndexFromObj.3
fi
if test -r GetInt.3; then
    rm -f Tcl_GetInt.3
    ln GetInt.3 Tcl_GetInt.3
fi
if test -r GetInt.3; then
    rm -f Tcl_GetDouble.3
    ln GetInt.3 Tcl_GetDouble.3
fi
if test -r GetInt.3; then
    rm -f Tcl_GetBoolean.3
    ln GetInt.3 Tcl_GetBoolean.3
fi
if test -r GetOpnFl.3; then
    rm -f Tcl_GetOpenFile.3
    ln GetOpnFl.3 Tcl_GetOpenFile.3
fi
if test -r GetStdChan.3; then
    rm -f Tcl_GetStdChannel.3
    ln GetStdChan.3 Tcl_GetStdChannel.3
fi
if test -r GetStdChan.3; then
    rm -f Tcl_SetStdChannel.3
    ln GetStdChan.3 Tcl_SetStdChannel.3
fi
if test -r GetVersion.3; then
    rm -f Tcl_GetVersion.3
    ln GetVersion.3 Tcl_GetVersion.3
fi
if test -r Hash.3; then
    rm -f Tcl_InitHashTable.3
    ln Hash.3 Tcl_InitHashTable.3
fi
if test -r Hash.3; then
    rm -f Tcl_DeleteHashTable.3
    ln Hash.3 Tcl_DeleteHashTable.3
fi
if test -r Hash.3; then
    rm -f Tcl_CreateHashEntry.3
    ln Hash.3 Tcl_CreateHashEntry.3
fi
if test -r Hash.3; then
    rm -f Tcl_DeleteHashEntry.3
    ln Hash.3 Tcl_DeleteHashEntry.3
fi
if test -r Hash.3; then
    rm -f Tcl_FindHashEntry.3
    ln Hash.3 Tcl_FindHashEntry.3
fi
if test -r Hash.3; then
    rm -f Tcl_GetHashValue.3
    ln Hash.3 Tcl_GetHashValue.3
fi
if test -r Hash.3; then
    rm -f Tcl_SetHashValue.3
    ln Hash.3 Tcl_SetHashValue.3
fi
if test -r Hash.3; then
    rm -f Tcl_GetHashKey.3
    ln Hash.3 Tcl_GetHashKey.3
fi
if test -r Hash.3; then
    rm -f Tcl_FirstHashEntry.3
    ln Hash.3 Tcl_FirstHashEntry.3
fi
if test -r Hash.3; then
    rm -f Tcl_NextHashEntry.3
    ln Hash.3 Tcl_NextHashEntry.3
fi
if test -r Hash.3; then
    rm -f Tcl_HashStats.3
    ln Hash.3 Tcl_HashStats.3
fi
if test -r InitStubs.3; then
    rm -f Tcl_InitStubs.3
    ln InitStubs.3 Tcl_InitStubs.3
fi
if test -r IntObj.3; then
    rm -f Tcl_NewIntObj.3
    ln IntObj.3 Tcl_NewIntObj.3
fi
if test -r IntObj.3; then
    rm -f Tcl_NewLongObj.3
    ln IntObj.3 Tcl_NewLongObj.3
fi
if test -r IntObj.3; then
    rm -f Tcl_SetIntObj.3
    ln IntObj.3 Tcl_SetIntObj.3
fi
if test -r IntObj.3; then
    rm -f Tcl_SetLongObj.3
    ln IntObj.3 Tcl_SetLongObj.3
fi
if test -r IntObj.3; then
    rm -f Tcl_GetIntFromObj.3
    ln IntObj.3 Tcl_GetIntFromObj.3
fi
if test -r IntObj.3; then
    rm -f Tcl_GetLongFromObj.3
    ln IntObj.3 Tcl_GetLongFromObj.3
fi
if test -r Interp.3; then
    rm -f Tcl_Interp.3
    ln Interp.3 Tcl_Interp.3
fi
if test -r LinkVar.3; then
    rm -f Tcl_LinkVar.3
    ln LinkVar.3 Tcl_LinkVar.3
fi
if test -r LinkVar.3; then
    rm -f Tcl_UnlinkVar.3
    ln LinkVar.3 Tcl_UnlinkVar.3
fi
if test -r LinkVar.3; then
    rm -f Tcl_UpdateLinkedVar.3
    ln LinkVar.3 Tcl_UpdateLinkedVar.3
fi
if test -r ListObj.3; then
    rm -f Tcl_ListObjAppendList.3
    ln ListObj.3 Tcl_ListObjAppendList.3
fi
if test -r ListObj.3; then
    rm -f Tcl_ListObjAppendElement.3
    ln ListObj.3 Tcl_ListObjAppendElement.3
fi
if test -r ListObj.3; then
    rm -f Tcl_NewListObj.3
    ln ListObj.3 Tcl_NewListObj.3
fi
if test -r ListObj.3; then
    rm -f Tcl_SetListObj.3
    ln ListObj.3 Tcl_SetListObj.3
fi
if test -r ListObj.3; then
    rm -f Tcl_ListObjGetElements.3
    ln ListObj.3 Tcl_ListObjGetElements.3
fi
if test -r ListObj.3; then
    rm -f Tcl_ListObjLength.3
    ln ListObj.3 Tcl_ListObjLength.3
fi
if test -r ListObj.3; then
    rm -f Tcl_ListObjIndex.3
    ln ListObj.3 Tcl_ListObjIndex.3
fi
if test -r ListObj.3; then
    rm -f Tcl_ListObjReplace.3
    ln ListObj.3 Tcl_ListObjReplace.3
fi
if test -r Notifier.3; then
    rm -f Tcl_CreateEventSource.3
    ln Notifier.3 Tcl_CreateEventSource.3
fi
if test -r Notifier.3; then
    rm -f Tcl_DeleteEventSource.3
    ln Notifier.3 Tcl_DeleteEventSource.3
fi
if test -r Notifier.3; then
    rm -f Tcl_SetMaxBlockTime.3
    ln Notifier.3 Tcl_SetMaxBlockTime.3
fi
if test -r Notifier.3; then
    rm -f Tcl_QueueEvent.3
    ln Notifier.3 Tcl_QueueEvent.3
fi
if test -r Notifier.3; then
    rm -f Tcl_ThreadQueueEvent.3
    ln Notifier.3 Tcl_ThreadQueueEvent.3
fi
if test -r Notifier.3; then
    rm -f Tcl_ThreadAlert.3
    ln Notifier.3 Tcl_ThreadAlert.3
fi
if test -r Notifier.3; then
    rm -f Tcl_GetCurrentThread.3
    ln Notifier.3 Tcl_GetCurrentThread.3
fi
if test -r Notifier.3; then
    rm -f Tcl_DeleteEvents.3
    ln Notifier.3 Tcl_DeleteEvents.3
fi
if test -r Notifier.3; then
    rm -f Tcl_InitNotifier.3
    ln Notifier.3 Tcl_InitNotifier.3
fi
if test -r Notifier.3; then
    rm -f Tcl_FinalizeNotifier.3
    ln Notifier.3 Tcl_FinalizeNotifier.3
fi
if test -r Notifier.3; then
    rm -f Tcl_WaitForEvent.3
    ln Notifier.3 Tcl_WaitForEvent.3
fi
if test -r Notifier.3; then
    rm -f Tcl_AlertNotifier.3
    ln Notifier.3 Tcl_AlertNotifier.3
fi
if test -r Notifier.3; then
    rm -f Tcl_SetTimer.3
    ln Notifier.3 Tcl_SetTimer.3
fi
if test -r Notifier.3; then
    rm -f Tcl_ServiceAll.3
    ln Notifier.3 Tcl_ServiceAll.3
fi
if test -r Notifier.3; then
    rm -f Tcl_ServiceEvent.3
    ln Notifier.3 Tcl_ServiceEvent.3
fi
if test -r Notifier.3; then
    rm -f Tcl_GetServiceMode.3
    ln Notifier.3 Tcl_GetServiceMode.3
fi
if test -r Notifier.3; then
    rm -f Tcl_SetServiceMode.3
    ln Notifier.3 Tcl_SetServiceMode.3
fi
if test -r Object.3; then
    rm -f Tcl_NewObj.3
    ln Object.3 Tcl_NewObj.3
fi
if test -r Object.3; then
    rm -f Tcl_DuplicateObj.3
    ln Object.3 Tcl_DuplicateObj.3
fi
if test -r Object.3; then
    rm -f Tcl_IncrRefCount.3
    ln Object.3 Tcl_IncrRefCount.3
fi
if test -r Object.3; then
    rm -f Tcl_DecrRefCount.3
    ln Object.3 Tcl_DecrRefCount.3
fi
if test -r Object.3; then
    rm -f Tcl_IsShared.3
    ln Object.3 Tcl_IsShared.3
fi
if test -r ObjectType.3; then
    rm -f Tcl_RegisterObjType.3
    ln ObjectType.3 Tcl_RegisterObjType.3
fi
if test -r ObjectType.3; then
    rm -f Tcl_GetObjType.3
    ln ObjectType.3 Tcl_GetObjType.3
fi
if test -r ObjectType.3; then
    rm -f Tcl_AppendAllObjTypes.3
    ln ObjectType.3 Tcl_AppendAllObjTypes.3
fi
if test -r ObjectType.3; then
    rm -f Tcl_ConvertToType.3
    ln ObjectType.3 Tcl_ConvertToType.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_OpenFileChannel.3
    ln OpenFileChnl.3 Tcl_OpenFileChannel.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_OpenCommandChannel.3
    ln OpenFileChnl.3 Tcl_OpenCommandChannel.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_MakeFileChannel.3
    ln OpenFileChnl.3 Tcl_MakeFileChannel.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_GetChannel.3
    ln OpenFileChnl.3 Tcl_GetChannel.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_RegisterChannel.3
    ln OpenFileChnl.3 Tcl_RegisterChannel.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_UnregisterChannel.3
    ln OpenFileChnl.3 Tcl_UnregisterChannel.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Close.3
    ln OpenFileChnl.3 Tcl_Close.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_ReadChars.3
    ln OpenFileChnl.3 Tcl_ReadChars.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Read.3
    ln OpenFileChnl.3 Tcl_Read.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_GetsObj.3
    ln OpenFileChnl.3 Tcl_GetsObj.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Gets.3
    ln OpenFileChnl.3 Tcl_Gets.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_WriteObj.3
    ln OpenFileChnl.3 Tcl_WriteObj.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_WriteChars.3
    ln OpenFileChnl.3 Tcl_WriteChars.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Write.3
    ln OpenFileChnl.3 Tcl_Write.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Flush.3
    ln OpenFileChnl.3 Tcl_Flush.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Seek.3
    ln OpenFileChnl.3 Tcl_Seek.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Tell.3
    ln OpenFileChnl.3 Tcl_Tell.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_GetChannelOption.3
    ln OpenFileChnl.3 Tcl_GetChannelOption.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_SetChannelOption.3
    ln OpenFileChnl.3 Tcl_SetChannelOption.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Eof.3
    ln OpenFileChnl.3 Tcl_Eof.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_InputBlocked.3
    ln OpenFileChnl.3 Tcl_InputBlocked.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_InputBuffered.3
    ln OpenFileChnl.3 Tcl_InputBuffered.3
fi
if test -r OpenTcp.3; then
    rm -f Tcl_OpenTcpClient.3
    ln OpenTcp.3 Tcl_OpenTcpClient.3
fi
if test -r OpenTcp.3; then
    rm -f Tcl_MakeTcpClientChannel.3
    ln OpenTcp.3 Tcl_MakeTcpClientChannel.3
fi
if test -r OpenTcp.3; then
    rm -f Tcl_OpenTcpServer.3
    ln OpenTcp.3 Tcl_OpenTcpServer.3
fi
if test -r ParseCmd.3; then
    rm -f Tcl_ParseCommand.3
    ln ParseCmd.3 Tcl_ParseCommand.3
fi
if test -r ParseCmd.3; then
    rm -f Tcl_ParseExpr.3
    ln ParseCmd.3 Tcl_ParseExpr.3
fi
if test -r ParseCmd.3; then
    rm -f Tcl_ParseBraces.3
    ln ParseCmd.3 Tcl_ParseBraces.3
fi
if test -r ParseCmd.3; then
    rm -f Tcl_ParseQuotedString.3
    ln ParseCmd.3 Tcl_ParseQuotedString.3
fi
if test -r ParseCmd.3; then
    rm -f Tcl_ParseVarName.3
    ln ParseCmd.3 Tcl_ParseVarName.3
fi
if test -r ParseCmd.3; then
    rm -f Tcl_FreeParse.3
    ln ParseCmd.3 Tcl_FreeParse.3
fi
if test -r ParseCmd.3; then
    rm -f Tcl_EvalTokens.3
    ln ParseCmd.3 Tcl_EvalTokens.3
fi
if test -r PkgRequire.3; then
    rm -f Tcl_PkgRequire.3
    ln PkgRequire.3 Tcl_PkgRequire.3
fi
if test -r PkgRequire.3; then
    rm -f Tcl_PkgRequireEx.3
    ln PkgRequire.3 Tcl_PkgRequireEx.3
fi
if test -r PkgRequire.3; then
    rm -f Tcl_PkgPresent.3
    ln PkgRequire.3 Tcl_PkgPresent.3
fi
if test -r PkgRequire.3; then
    rm -f Tcl_PkgPresentEx.3
    ln PkgRequire.3 Tcl_PkgPresentEx.3
fi
if test -r PkgRequire.3; then
    rm -f Tcl_PkgProvide.3
    ln PkgRequire.3 Tcl_PkgProvide.3
fi
if test -r PkgRequire.3; then
    rm -f Tcl_PkgProvideEx.3
    ln PkgRequire.3 Tcl_PkgProvideEx.3
fi
if test -r Preserve.3; then
    rm -f Tcl_Preserve.3
    ln Preserve.3 Tcl_Preserve.3
fi
if test -r Preserve.3; then
    rm -f Tcl_Release.3
    ln Preserve.3 Tcl_Release.3
fi
if test -r Preserve.3; then
    rm -f Tcl_EventuallyFree.3
    ln Preserve.3 Tcl_EventuallyFree.3
fi
if test -r PrintDbl.3; then
    rm -f Tcl_PrintDouble.3
    ln PrintDbl.3 Tcl_PrintDouble.3
fi
if test -r RecEvalObj.3; then
    rm -f Tcl_RecordAndEvalObj.3
    ln RecEvalObj.3 Tcl_RecordAndEvalObj.3
fi
if test -r RecordEval.3; then
    rm -f Tcl_RecordAndEval.3
    ln RecordEval.3 Tcl_RecordAndEval.3
fi
if test -r RegExp.3; then
    rm -f Tcl_RegExpMatch.3
    ln RegExp.3 Tcl_RegExpMatch.3
fi
if test -r RegExp.3; then
    rm -f Tcl_RegExpCompile.3
    ln RegExp.3 Tcl_RegExpCompile.3
fi
if test -r RegExp.3; then
    rm -f Tcl_RegExpExec.3
    ln RegExp.3 Tcl_RegExpExec.3
fi
if test -r RegExp.3; then
    rm -f Tcl_RegExpRange.3
    ln RegExp.3 Tcl_RegExpRange.3
fi
if test -r RegExp.3; then
    rm -f Tcl_GetRegExpFromObj.3
    ln RegExp.3 Tcl_GetRegExpFromObj.3
fi
if test -r RegExp.3; then
    rm -f Tcl_RegExpMatchObj.3
    ln RegExp.3 Tcl_RegExpMatchObj.3
fi
if test -r RegExp.3; then
    rm -f Tcl_GetRegExpInfo.3
    ln RegExp.3 Tcl_GetRegExpInfo.3
fi
if test -r SaveResult.3; then
    rm -f Tcl_SaveResult.3
    ln SaveResult.3 Tcl_SaveResult.3
fi
if test -r SaveResult.3; then
    rm -f Tcl_RestoreResult.3
    ln SaveResult.3 Tcl_RestoreResult.3
fi
if test -r SaveResult.3; then
    rm -f Tcl_DiscardResult.3
    ln SaveResult.3 Tcl_DiscardResult.3
fi
if test -r SetErrno.3; then
    rm -f Tcl_SetErrno.3
    ln SetErrno.3 Tcl_SetErrno.3
fi
if test -r SetErrno.3; then
    rm -f Tcl_GetErrno.3
    ln SetErrno.3 Tcl_GetErrno.3
fi
if test -r SetRecLmt.3; then
    rm -f Tcl_SetRecursionLimit.3
    ln SetRecLmt.3 Tcl_SetRecursionLimit.3
fi
if test -r SetResult.3; then
    rm -f Tcl_SetObjResult.3
    ln SetResult.3 Tcl_SetObjResult.3
fi
if test -r SetResult.3; then
    rm -f Tcl_GetObjResult.3
    ln SetResult.3 Tcl_GetObjResult.3
fi
if test -r SetResult.3; then
    rm -f Tcl_SetResult.3
    ln SetResult.3 Tcl_SetResult.3
fi
if test -r SetResult.3; then
    rm -f Tcl_GetStringResult.3
    ln SetResult.3 Tcl_GetStringResult.3
fi
if test -r SetResult.3; then
    rm -f Tcl_AppendResult.3
    ln SetResult.3 Tcl_AppendResult.3
fi
if test -r SetResult.3; then
    rm -f Tcl_AppendResultVA.3
    ln SetResult.3 Tcl_AppendResultVA.3
fi
if test -r SetResult.3; then
    rm -f Tcl_AppendElement.3
    ln SetResult.3 Tcl_AppendElement.3
fi
if test -r SetResult.3; then
    rm -f Tcl_ResetResult.3
    ln SetResult.3 Tcl_ResetResult.3
fi
if test -r SetVar.3; then
    rm -f Tcl_SetVar2Ex.3
    ln SetVar.3 Tcl_SetVar2Ex.3
fi
if test -r SetVar.3; then
    rm -f Tcl_SetVar.3
    ln SetVar.3 Tcl_SetVar.3
fi
if test -r SetVar.3; then
    rm -f Tcl_SetVar2.3
    ln SetVar.3 Tcl_SetVar2.3
fi
if test -r SetVar.3; then
    rm -f Tcl_ObjSetVar2.3
    ln SetVar.3 Tcl_ObjSetVar2.3
fi
if test -r SetVar.3; then
    rm -f Tcl_GetVar2Ex.3
    ln SetVar.3 Tcl_GetVar2Ex.3
fi
if test -r SetVar.3; then
    rm -f Tcl_GetVar.3
    ln SetVar.3 Tcl_GetVar.3
fi
if test -r SetVar.3; then
    rm -f Tcl_GetVar2.3
    ln SetVar.3 Tcl_GetVar2.3
fi
if test -r SetVar.3; then
    rm -f Tcl_ObjGetVar2.3
    ln SetVar.3 Tcl_ObjGetVar2.3
fi
if test -r SetVar.3; then
    rm -f Tcl_UnsetVar.3
    ln SetVar.3 Tcl_UnsetVar.3
fi
if test -r SetVar.3; then
    rm -f Tcl_UnsetVar2.3
    ln SetVar.3 Tcl_UnsetVar2.3
fi
if test -r Sleep.3; then
    rm -f Tcl_Sleep.3
    ln Sleep.3 Tcl_Sleep.3
fi
if test -r SplitList.3; then
    rm -f Tcl_SplitList.3
    ln SplitList.3 Tcl_SplitList.3
fi
if test -r SplitList.3; then
    rm -f Tcl_Merge.3
    ln SplitList.3 Tcl_Merge.3
fi
if test -r SplitList.3; then
    rm -f Tcl_ScanElement.3
    ln SplitList.3 Tcl_ScanElement.3
fi
if test -r SplitList.3; then
    rm -f Tcl_ConvertElement.3
    ln SplitList.3 Tcl_ConvertElement.3
fi
if test -r SplitPath.3; then
    rm -f Tcl_SplitPath.3
    ln SplitPath.3 Tcl_SplitPath.3
fi
if test -r SplitPath.3; then
    rm -f Tcl_JoinPath.3
    ln SplitPath.3 Tcl_JoinPath.3
fi
if test -r SplitPath.3; then
    rm -f Tcl_GetPathType.3
    ln SplitPath.3 Tcl_GetPathType.3
fi
if test -r StaticPkg.3; then
    rm -f Tcl_StaticPackage.3
    ln StaticPkg.3 Tcl_StaticPackage.3
fi
if test -r StrMatch.3; then
    rm -f Tcl_StringMatch.3
    ln StrMatch.3 Tcl_StringMatch.3
fi
if test -r StrMatch.3; then
    rm -f Tcl_StringCaseMatch.3
    ln StrMatch.3 Tcl_StringCaseMatch.3
fi
if test -r StringObj.3; then
    rm -f Tcl_NewStringObj.3
    ln StringObj.3 Tcl_NewStringObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_NewUnicodeObj.3
    ln StringObj.3 Tcl_NewUnicodeObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_SetStringObj.3
    ln StringObj.3 Tcl_SetStringObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_SetUnicodeObj.3
    ln StringObj.3 Tcl_SetUnicodeObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_GetStringFromObj.3
    ln StringObj.3 Tcl_GetStringFromObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_GetString.3
    ln StringObj.3 Tcl_GetString.3
fi
if test -r StringObj.3; then
    rm -f Tcl_GetUnicode.3
    ln StringObj.3 Tcl_GetUnicode.3
fi
if test -r StringObj.3; then
    rm -f Tcl_GetUniChar.3
    ln StringObj.3 Tcl_GetUniChar.3
fi
if test -r StringObj.3; then
    rm -f Tcl_GetCharLength.3
    ln StringObj.3 Tcl_GetCharLength.3
fi
if test -r StringObj.3; then
    rm -f Tcl_GetRange.3
    ln StringObj.3 Tcl_GetRange.3
fi
if test -r StringObj.3; then
    rm -f Tcl_AppendToObj.3
    ln StringObj.3 Tcl_AppendToObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_AppendUnicodeToObj.3
    ln StringObj.3 Tcl_AppendUnicodeToObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_AppendStringsToObj.3
    ln StringObj.3 Tcl_AppendStringsToObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_AppendStringsToObjVA.3
    ln StringObj.3 Tcl_AppendStringsToObjVA.3
fi
if test -r StringObj.3; then
    rm -f Tcl_AppendObjToObj.3
    ln StringObj.3 Tcl_AppendObjToObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_SetObjLength.3
    ln StringObj.3 Tcl_SetObjLength.3
fi
if test -r StringObj.3; then
    rm -f Tcl_ConcatObj.3
    ln StringObj.3 Tcl_ConcatObj.3
fi
if test -r TclInitStubs.3; then
    rm -f Tcl_InitStubs.3
    ln TclInitStubs.3 Tcl_InitStubs.3
fi
if test -r Thread.3; then
    rm -f Tcl_ConditionNotify.3
    ln Thread.3 Tcl_ConditionNotify.3
fi
if test -r Thread.3; then
    rm -f Tcl_ConditionWait.3
    ln Thread.3 Tcl_ConditionWait.3
fi
if test -r Thread.3; then
    rm -f Tcl_GetThreadData.3
    ln Thread.3 Tcl_GetThreadData.3
fi
if test -r Thread.3; then
    rm -f Tcl_MutexLock.3
    ln Thread.3 Tcl_MutexLock.3
fi
if test -r Thread.3; then
    rm -f Tcl_MutexUnlock.3
    ln Thread.3 Tcl_MutexUnlock.3
fi
if test -r ToUpper.3; then
    rm -f Tcl_UniCharToUpper.3
    ln ToUpper.3 Tcl_UniCharToUpper.3
fi
if test -r ToUpper.3; then
    rm -f Tcl_UniCharToLower.3
    ln ToUpper.3 Tcl_UniCharToLower.3
fi
if test -r ToUpper.3; then
    rm -f Tcl_UniCharToTitle.3
    ln ToUpper.3 Tcl_UniCharToTitle.3
fi
if test -r ToUpper.3; then
    rm -f Tcl_UtfToUpper.3
    ln ToUpper.3 Tcl_UtfToUpper.3
fi
if test -r ToUpper.3; then
    rm -f Tcl_UtfToLower.3
    ln ToUpper.3 Tcl_UtfToLower.3
fi
if test -r ToUpper.3; then
    rm -f Tcl_UtfToTitle.3
    ln ToUpper.3 Tcl_UtfToTitle.3
fi
if test -r TraceVar.3; then
    rm -f Tcl_TraceVar.3
    ln TraceVar.3 Tcl_TraceVar.3
fi
if test -r TraceVar.3; then
    rm -f Tcl_TraceVar2.3
    ln TraceVar.3 Tcl_TraceVar2.3
fi
if test -r TraceVar.3; then
    rm -f Tcl_UntraceVar.3
    ln TraceVar.3 Tcl_UntraceVar.3
fi
if test -r TraceVar.3; then
    rm -f Tcl_UntraceVar2.3
    ln TraceVar.3 Tcl_UntraceVar2.3
fi
if test -r TraceVar.3; then
    rm -f Tcl_VarTraceInfo.3
    ln TraceVar.3 Tcl_VarTraceInfo.3
fi
if test -r TraceVar.3; then
    rm -f Tcl_VarTraceInfo2.3
    ln TraceVar.3 Tcl_VarTraceInfo2.3
fi
if test -r Translate.3; then
    rm -f Tcl_TranslateFileName.3
    ln Translate.3 Tcl_TranslateFileName.3
fi
if test -r UpVar.3; then
    rm -f Tcl_UpVar.3
    ln UpVar.3 Tcl_UpVar.3
fi
if test -r UpVar.3; then
    rm -f Tcl_UpVar2.3
    ln UpVar.3 Tcl_UpVar2.3
fi
if test -r Utf.3; then
    rm -f Tcl_UniChar.3
    ln Utf.3 Tcl_UniChar.3
fi
if test -r Utf.3; then
    rm -f Tcl_UniCharToUtf.3
    ln Utf.3 Tcl_UniCharToUtf.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfToUniChar.3
    ln Utf.3 Tcl_UtfToUniChar.3
fi
if test -r Utf.3; then
    rm -f Tcl_UniCharToUtfDString.3
    ln Utf.3 Tcl_UniCharToUtfDString.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfToUniCharDString.3
    ln Utf.3 Tcl_UtfToUniCharDString.3
fi
if test -r Utf.3; then
    rm -f Tcl_UniCharLen.3
    ln Utf.3 Tcl_UniCharLen.3
fi
if test -r Utf.3; then
    rm -f Tcl_UniCharNcmp.3
    ln Utf.3 Tcl_UniCharNcmp.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfCharComplete.3
    ln Utf.3 Tcl_UtfCharComplete.3
fi
if test -r Utf.3; then
    rm -f Tcl_NumUtfChars.3
    ln Utf.3 Tcl_NumUtfChars.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfFindFirst.3
    ln Utf.3 Tcl_UtfFindFirst.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfFindLast.3
    ln Utf.3 Tcl_UtfFindLast.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfNext.3
    ln Utf.3 Tcl_UtfNext.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfPrev.3
    ln Utf.3 Tcl_UtfPrev.3
fi
if test -r Utf.3; then
    rm -f Tcl_UniCharAtIndex.3
    ln Utf.3 Tcl_UniCharAtIndex.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfAtIndex.3
    ln Utf.3 Tcl_UtfAtIndex.3
fi
if test -r Utf.3; then
    rm -f Tcl_UtfBackslash.3
    ln Utf.3 Tcl_UtfBackslash.3
fi
if test -r WrongNumArgs.3; then
    rm -f Tcl_WrongNumArgs.3
    ln WrongNumArgs.3 Tcl_WrongNumArgs.3
fi
if test -r http.n; then
    rm -f Http.n
    ln http.n Http.n
fi
if test -r pkgMkIndex.n; then
    rm -f pkg_mkIndex.n
    ln pkgMkIndex.n pkg_mkIndex.n
fi
if test -r safe.n; then
    rm -f Safe\Base.n
    ln safe.n Safe\Base.n
fi
if test -r tcltest.n; then
    rm -f Tcltest.n
    ln tcltest.n Tcltest.n
fi
exit 0
@


1.2
log
@TCL 8.2.1 update
@
text
@@


1.2.2.1
log
@Upgrading to newer version
@
text
@@


1.1
log
@Initial revision
@
text
@d30 8
a37 3
if test -r safe.n; then
    rm -f Base.n
    ln safe.n Base.n
d39 3
a41 3
if test -r http.n; then
    rm -f Http.n
    ln http.n Http.n
d43 3
a45 3
if test -r safe.n; then
    rm -f Safe.n
    ln safe.n Safe.n
d47 3
a49 3
if test -r StringObj.3; then
    rm -f TclConcatObj.3
    ln StringObj.3 TclConcatObj.3
d52 2
a53 2
    rm -f Tcl_AddErrorInfo.3
    ln AddErrInfo.3 Tcl_AddErrorInfo.3
d56 2
a57 2
    rm -f Tcl_AddObjErrorInfo.3
    ln AddErrInfo.3 Tcl_AddObjErrorInfo.3
d63 8
d79 3
a81 3
if test -r ObjectType.3; then
    rm -f Tcl_AppendAllObjTypes.3
    ln ObjectType.3 Tcl_AppendAllObjTypes.3
d83 3
a85 3
if test -r SetResult.3; then
    rm -f Tcl_AppendElement.3
    ln SetResult.3 Tcl_AppendElement.3
d87 3
a89 11
if test -r SetResult.3; then
    rm -f Tcl_AppendResult.3
    ln SetResult.3 Tcl_AppendResult.3
fi
if test -r StringObj.3; then
    rm -f Tcl_AppendStringsToObj.3
    ln StringObj.3 Tcl_AppendStringsToObj.3
fi
if test -r StringObj.3; then
    rm -f Tcl_AppendToObj.3
    ln StringObj.3 Tcl_AppendToObj.3
d96 2
a97 2
    rm -f Tcl_AsyncDelete.3
    ln Async.3 Tcl_AsyncDelete.3
d104 6
a109 2
    rm -f Tcl_AsyncMark.3
    ln Async.3 Tcl_AsyncMark.3
d119 27
a145 3
if test -r CrtChannel.3; then
    rm -f Tcl_BadChannelOption.3
    ln CrtChannel.3 Tcl_BadChannelOption.3
d151 3
a153 3
if test -r DoWhenIdle.3; then
    rm -f Tcl_CancelIdleCall.3
    ln DoWhenIdle.3 Tcl_CancelIdleCall.3
d155 7
a161 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_Close.3
    ln OpenFileChnl.3 Tcl_Close.3
d171 23
a193 3
if test -r SplitList.3; then
    rm -f Tcl_ConvertElement.3
    ln SplitList.3 Tcl_ConvertElement.3
d195 3
a197 3
if test -r ObjectType.3; then
    rm -f Tcl_ConvertToType.3
    ln ObjectType.3 Tcl_ConvertToType.3
d199 3
a201 3
if test -r CrtSlave.3; then
    rm -f Tcl_CreateAlias.3
    ln CrtSlave.3 Tcl_CreateAlias.3
d203 3
a205 3
if test -r CrtSlave.3; then
    rm -f Tcl_CreateAliasObj.3
    ln CrtSlave.3 Tcl_CreateAliasObj.3
d208 2
a209 2
    rm -f Tcl_CreateChannel.3
    ln CrtChannel.3 Tcl_CreateChannel.3
d215 4
d223 4
a230 8
if test -r Notifier.3; then
    rm -f Tcl_CreateEventSource.3
    ln Notifier.3 Tcl_CreateEventSource.3
fi
if test -r Exit.3; then
    rm -f Tcl_CreateExitHandler.3
    ln Exit.3 Tcl_CreateExitHandler.3
fi
d235 3
a237 3
if test -r Hash.3; then
    rm -f Tcl_CreateHashEntry.3
    ln Hash.3 Tcl_CreateHashEntry.3
d243 8
d259 28
d291 36
d331 4
d339 8
d356 4
d364 2
a365 2
    rm -f Tcl_DStringFree.3
    ln DString.3 Tcl_DStringFree.3
d368 2
a369 2
    rm -f Tcl_DStringGetResult.3
    ln DString.3 Tcl_DStringGetResult.3
d372 2
a373 2
    rm -f Tcl_DStringInit.3
    ln DString.3 Tcl_DStringInit.3
d376 2
a377 2
    rm -f Tcl_DStringLength.3
    ln DString.3 Tcl_DStringLength.3
d384 2
a385 70
    rm -f Tcl_DStringSetLength.3
    ln DString.3 Tcl_DStringSetLength.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringStartSublist.3
    ln DString.3 Tcl_DStringStartSublist.3
fi
if test -r DString.3; then
    rm -f Tcl_DStringValue.3
    ln DString.3 Tcl_DStringValue.3
fi
if test -r Object.3; then
    rm -f Tcl_DecrRefCount.3
    ln Object.3 Tcl_DecrRefCount.3
fi
if test -r AssocData.3; then
    rm -f Tcl_DeleteAssocData.3
    ln AssocData.3 Tcl_DeleteAssocData.3
fi
if test -r CrtChnlHdlr.3; then
    rm -f Tcl_DeleteChannelHandler.3
    ln CrtChnlHdlr.3 Tcl_DeleteChannelHandler.3
fi
if test -r CrtCloseHdlr.3; then
    rm -f Tcl_DeleteCloseHandler.3
    ln CrtCloseHdlr.3 Tcl_DeleteCloseHandler.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_DeleteCommand.3
    ln CrtObjCmd.3 Tcl_DeleteCommand.3
fi
if test -r CrtObjCmd.3; then
    rm -f Tcl_DeleteCommandFromToken.3
    ln CrtObjCmd.3 Tcl_DeleteCommandFromToken.3
fi
if test -r Notifier.3; then
    rm -f Tcl_DeleteEventSource.3
    ln Notifier.3 Tcl_DeleteEventSource.3
fi
if test -r Notifier.3; then
    rm -f Tcl_DeleteEvents.3
    ln Notifier.3 Tcl_DeleteEvents.3
fi
if test -r Exit.3; then
    rm -f Tcl_DeleteExitHandler.3
    ln Exit.3 Tcl_DeleteExitHandler.3
fi
if test -r CrtFileHdlr.3; then
    rm -f Tcl_DeleteFileHandler.3
    ln CrtFileHdlr.3 Tcl_DeleteFileHandler.3
fi
if test -r Hash.3; then
    rm -f Tcl_DeleteHashEntry.3
    ln Hash.3 Tcl_DeleteHashEntry.3
fi
if test -r Hash.3; then
    rm -f Tcl_DeleteHashTable.3
    ln Hash.3 Tcl_DeleteHashTable.3
fi
if test -r CrtInterp.3; then
    rm -f Tcl_DeleteInterp.3
    ln CrtInterp.3 Tcl_DeleteInterp.3
fi
if test -r CrtTimerHdlr.3; then
    rm -f Tcl_DeleteTimerHandler.3
    ln CrtTimerHdlr.3 Tcl_DeleteTimerHandler.3
fi
if test -r CrtTrace.3; then
    rm -f Tcl_DeleteTrace.3
    ln CrtTrace.3 Tcl_DeleteTrace.3
d391 4
d403 75
a477 3
if test -r CallDel.3; then
    rm -f Tcl_DontCallWhenDeleted.3
    ln CallDel.3 Tcl_DontCallWhenDeleted.3
d479 3
a481 3
if test -r Object.3; then
    rm -f Tcl_DuplicateObj.3
    ln Object.3 Tcl_DuplicateObj.3
d483 3
a485 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_Eof.3
    ln OpenFileChnl.3 Tcl_Eof.3
d492 10
a501 2
    rm -f Tcl_EvalFile.3
    ln Eval.3 Tcl_EvalFile.3
d503 3
a505 3
if test -r EvalObj.3; then
    rm -f Tcl_EvalObj.3
    ln EvalObj.3 Tcl_EvalObj.3
d507 3
a509 3
if test -r Preserve.3; then
    rm -f Tcl_EventuallyFree.3
    ln Preserve.3 Tcl_EventuallyFree.3
d515 23
a537 3
if test -r CrtSlave.3; then
    rm -f Tcl_ExposeCommand.3
    ln CrtSlave.3 Tcl_ExposeCommand.3
d540 2
a541 6
    rm -f Tcl_ExprBoolean.3
    ln ExprLong.3 Tcl_ExprBoolean.3
fi
if test -r ExprLongObj.3; then
    rm -f Tcl_ExprBooleanObj.3
    ln ExprLongObj.3 Tcl_ExprBooleanObj.3
d547 3
a549 3
if test -r ExprLongObj.3; then
    rm -f Tcl_ExprDoubleObj.3
    ln ExprLongObj.3 Tcl_ExprDoubleObj.3
d552 2
a553 2
    rm -f Tcl_ExprLong.3
    ln ExprLong.3 Tcl_ExprLong.3
d560 8
a570 8
if test -r ExprLong.3; then
    rm -f Tcl_ExprString.3
    ln ExprLong.3 Tcl_ExprString.3
fi
if test -r Exit.3; then
    rm -f Tcl_Finalize.3
    ln Exit.3 Tcl_Finalize.3
fi
d575 3
a577 3
if test -r Hash.3; then
    rm -f Tcl_FindHashEntry.3
    ln Hash.3 Tcl_FindHashEntry.3
d579 7
a585 3
if test -r Hash.3; then
    rm -f Tcl_FirstHashEntry.3
    ln Hash.3 Tcl_FirstHashEntry.3
d587 3
a589 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_Flush.3
    ln OpenFileChnl.3 Tcl_Flush.3
d591 3
a593 3
if test -r Alloc.3; then
    rm -f Tcl_Free.3
    ln Alloc.3 Tcl_Free.3
d595 3
a597 11
if test -r CrtSlave.3; then
    rm -f Tcl_GetAlias.3
    ln CrtSlave.3 Tcl_GetAlias.3
fi
if test -r CrtSlave.3; then
    rm -f Tcl_GetAliasObj.3
    ln CrtSlave.3 Tcl_GetAliasObj.3
fi
if test -r AssocData.3; then
    rm -f Tcl_GetAssocData.3
    ln AssocData.3 Tcl_GetAssocData.3
d603 3
a605 3
if test -r BoolObj.3; then
    rm -f Tcl_GetBooleanFromObj.3
    ln BoolObj.3 Tcl_GetBooleanFromObj.3
d607 3
a609 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_GetChannel.3
    ln OpenFileChnl.3 Tcl_GetChannel.3
d611 3
a613 3
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelBufferSize.3
    ln CrtChannel.3 Tcl_GetChannelBufferSize.3
d615 3
a617 3
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelHandle.3
    ln CrtChannel.3 Tcl_GetChannelHandle.3
d619 3
a621 3
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelInstanceData.3
    ln CrtChannel.3 Tcl_GetChannelInstanceData.3
d623 3
a625 3
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelMode.3
    ln CrtChannel.3 Tcl_GetChannelMode.3
d627 3
a629 3
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelName.3
    ln CrtChannel.3 Tcl_GetChannelName.3
d631 3
a633 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_GetChannelOption.3
    ln OpenFileChnl.3 Tcl_GetChannelOption.3
d635 3
a637 3
if test -r CrtChannel.3; then
    rm -f Tcl_GetChannelType.3
    ln CrtChannel.3 Tcl_GetChannelType.3
d639 3
a641 3
if test -r CrtObjCmd.3; then
    rm -f Tcl_GetCommandInfo.3
    ln CrtObjCmd.3 Tcl_GetCommandInfo.3
d643 3
a645 3
if test -r CrtObjCmd.3; then
    rm -f Tcl_GetCommandName.3
    ln CrtObjCmd.3 Tcl_GetCommandName.3
d647 3
a649 3
if test -r GetInt.3; then
    rm -f Tcl_GetDouble.3
    ln GetInt.3 Tcl_GetDouble.3
d651 3
a653 3
if test -r DoubleObj.3; then
    rm -f Tcl_GetDoubleFromObj.3
    ln DoubleObj.3 Tcl_GetDoubleFromObj.3
d655 3
a657 3
if test -r SetErrno.3; then
    rm -f Tcl_GetErrno.3
    ln SetErrno.3 Tcl_GetErrno.3
d660 10
a669 2
    rm -f Tcl_GetHashKey.3
    ln Hash.3 Tcl_GetHashKey.3
d671 3
a673 3
if test -r Hash.3; then
    rm -f Tcl_GetHashValue.3
    ln Hash.3 Tcl_GetHashValue.3
d675 3
a677 3
if test -r GetIndex.3; then
    rm -f Tcl_GetIndexFromObj.3
    ln GetIndex.3 Tcl_GetIndexFromObj.3
d679 3
a681 3
if test -r GetInt.3; then
    rm -f Tcl_GetInt.3
    ln GetInt.3 Tcl_GetInt.3
a686 4
if test -r CrtSlave.3; then
    rm -f Tcl_GetInterpPath.3
    ln CrtSlave.3 Tcl_GetInterpPath.3
fi
d691 39
a729 3
if test -r CrtSlave.3; then
    rm -f Tcl_GetMaster.3
    ln CrtSlave.3 Tcl_GetMaster.3
d731 3
a733 3
if test -r SetResult.3; then
    rm -f Tcl_GetObjResult.3
    ln SetResult.3 Tcl_GetObjResult.3
d735 3
a737 3
if test -r ObjectType.3; then
    rm -f Tcl_GetObjType.3
    ln ObjectType.3 Tcl_GetObjType.3
d739 3
a741 3
if test -r GetOpnFl.3; then
    rm -f Tcl_GetOpenFile.3
    ln GetOpnFl.3 Tcl_GetOpenFile.3
d743 3
a745 3
if test -r SplitPath.3; then
    rm -f Tcl_GetPathType.3
    ln SplitPath.3 Tcl_GetPathType.3
d748 2
a749 2
    rm -f Tcl_GetServiceMode.3
    ln Notifier.3 Tcl_GetServiceMode.3
d751 3
a753 3
if test -r CrtSlave.3; then
    rm -f Tcl_GetSlave.3
    ln CrtSlave.3 Tcl_GetSlave.3
d755 3
a757 3
if test -r GetStdChan.3; then
    rm -f Tcl_GetStdChannel.3
    ln GetStdChan.3 Tcl_GetStdChannel.3
d759 3
a761 3
if test -r StringObj.3; then
    rm -f Tcl_GetStringFromObj.3
    ln StringObj.3 Tcl_GetStringFromObj.3
d763 3
a765 3
if test -r SetResult.3; then
    rm -f Tcl_GetStringResult.3
    ln SetResult.3 Tcl_GetStringResult.3
d767 3
a769 3
if test -r SetVar.3; then
    rm -f Tcl_GetVar.3
    ln SetVar.3 Tcl_GetVar.3
d771 3
a773 3
if test -r SetVar.3; then
    rm -f Tcl_GetVar2.3
    ln SetVar.3 Tcl_GetVar2.3
d775 3
a777 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_Gets.3
    ln OpenFileChnl.3 Tcl_Gets.3
d779 3
a781 3
if test -r Eval.3; then
    rm -f Tcl_GlobalEval.3
    ln Eval.3 Tcl_GlobalEval.3
d783 3
a785 3
if test -r EvalObj.3; then
    rm -f Tcl_GlobalEvalObj.3
    ln EvalObj.3 Tcl_GlobalEvalObj.3
d787 3
a789 3
if test -r Hash.3; then
    rm -f Tcl_HashStats.3
    ln Hash.3 Tcl_HashStats.3
d791 3
a793 3
if test -r CrtSlave.3; then
    rm -f Tcl_HideCommand.3
    ln CrtSlave.3 Tcl_HideCommand.3
d795 3
a797 3
if test -r Object.3; then
    rm -f Tcl_IncrRefCount.3
    ln Object.3 Tcl_IncrRefCount.3
d799 3
a801 3
if test -r Hash.3; then
    rm -f Tcl_InitHashTable.3
    ln Hash.3 Tcl_InitHashTable.3
d803 3
a805 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_InputBlocked.3
    ln OpenFileChnl.3 Tcl_InputBlocked.3
d807 3
a809 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_InputBuffered.3
    ln OpenFileChnl.3 Tcl_InputBuffered.3
d811 3
a813 3
if test -r Interp.3; then
    rm -f Tcl_Interp.3
    ln Interp.3 Tcl_Interp.3
d815 3
a817 3
if test -r CrtInterp.3; then
    rm -f Tcl_InterpDeleted.3
    ln CrtInterp.3 Tcl_InterpDeleted.3
d819 3
a821 3
if test -r CrtSlave.3; then
    rm -f Tcl_IsSafe.3
    ln CrtSlave.3 Tcl_IsSafe.3
d827 7
a833 3
if test -r SplitPath.3; then
    rm -f Tcl_JoinPath.3
    ln SplitPath.3 Tcl_JoinPath.3
d835 3
a837 3
if test -r LinkVar.3; then
    rm -f Tcl_LinkVar.3
    ln LinkVar.3 Tcl_LinkVar.3
d839 3
a841 3
if test -r ListObj.3; then
    rm -f Tcl_ListObjAppendElement.3
    ln ListObj.3 Tcl_ListObjAppendElement.3
d843 3
a845 3
if test -r ListObj.3; then
    rm -f Tcl_ListObjAppendList.3
    ln ListObj.3 Tcl_ListObjAppendList.3
d847 3
a849 3
if test -r ListObj.3; then
    rm -f Tcl_ListObjGetElements.3
    ln ListObj.3 Tcl_ListObjGetElements.3
d851 3
a853 3
if test -r ListObj.3; then
    rm -f Tcl_ListObjIndex.3
    ln ListObj.3 Tcl_ListObjIndex.3
d855 3
a857 3
if test -r ListObj.3; then
    rm -f Tcl_ListObjLength.3
    ln ListObj.3 Tcl_ListObjLength.3
d859 3
a861 3
if test -r ListObj.3; then
    rm -f Tcl_ListObjReplace.3
    ln ListObj.3 Tcl_ListObjReplace.3
d864 2
a865 2
    rm -f Tcl_MakeFileChannel.3
    ln OpenFileChnl.3 Tcl_MakeFileChannel.3
d867 3
a869 3
if test -r CrtSlave.3; then
    rm -f Tcl_MakeSafe.3
    ln CrtSlave.3 Tcl_MakeSafe.3
d871 3
a873 3
if test -r OpenTcp.3; then
    rm -f Tcl_MakeTcpClientChannel.3
    ln OpenTcp.3 Tcl_MakeTcpClientChannel.3
d875 3
a877 3
if test -r SplitList.3; then
    rm -f Tcl_Merge.3
    ln SplitList.3 Tcl_Merge.3
d879 3
a881 3
if test -r BoolObj.3; then
    rm -f Tcl_NewBooleanObj.3
    ln BoolObj.3 Tcl_NewBooleanObj.3
d883 3
a885 3
if test -r DoubleObj.3; then
    rm -f Tcl_NewDoubleObj.3
    ln DoubleObj.3 Tcl_NewDoubleObj.3
d887 3
a889 3
if test -r IntObj.3; then
    rm -f Tcl_NewIntObj.3
    ln IntObj.3 Tcl_NewIntObj.3
d891 3
a893 3
if test -r ListObj.3; then
    rm -f Tcl_NewListObj.3
    ln ListObj.3 Tcl_NewListObj.3
d895 3
a897 3
if test -r IntObj.3; then
    rm -f Tcl_NewLongObj.3
    ln IntObj.3 Tcl_NewLongObj.3
d899 3
a901 3
if test -r Object.3; then
    rm -f Tcl_NewObj.3
    ln Object.3 Tcl_NewObj.3
d903 3
a905 3
if test -r StringObj.3; then
    rm -f Tcl_NewStringObj.3
    ln StringObj.3 Tcl_NewStringObj.3
d907 3
a909 3
if test -r Hash.3; then
    rm -f Tcl_NextHashEntry.3
    ln Hash.3 Tcl_NextHashEntry.3
d911 3
a913 3
if test -r CrtChannel.3; then
    rm -f Tcl_NotifyChannel.3
    ln CrtChannel.3 Tcl_NotifyChannel.3
d915 3
a917 3
if test -r ObjSetVar.3; then
    rm -f Tcl_ObjGetVar2.3
    ln ObjSetVar.3 Tcl_ObjGetVar2.3
d919 3
a921 3
if test -r ObjSetVar.3; then
    rm -f Tcl_ObjSetVar2.3
    ln ObjSetVar.3 Tcl_ObjSetVar2.3
d924 2
a925 2
    rm -f Tcl_OpenCommandChannel.3
    ln OpenFileChnl.3 Tcl_OpenCommandChannel.3
d928 2
a929 2
    rm -f Tcl_OpenFileChannel.3
    ln OpenFileChnl.3 Tcl_OpenFileChannel.3
d936 4
d943 44
d992 2
a993 6
    rm -f Tcl_PkgRequire.3
    ln PkgRequire.3 Tcl_PkgRequire.3
fi
if test -r AddErrInfo.3; then
    rm -f Tcl_PosixError.3
    ln AddErrInfo.3 Tcl_PosixError.3
d999 8
d1011 3
a1013 15
if test -r Notifier.3; then
    rm -f Tcl_QueueEvent.3
    ln Notifier.3 Tcl_QueueEvent.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Read.3
    ln OpenFileChnl.3 Tcl_Read.3
fi
if test -r Alloc.3; then
    rm -f Tcl_Realloc.3
    ln Alloc.3 Tcl_Realloc.3
fi
if test -r DetachPids.3; then
    rm -f Tcl_ReapDetachedProcs.3
    ln DetachPids.3 Tcl_ReapDetachedProcs.3
a1018 12
if test -r RecEvalObj.3; then
    rm -f Tcl_RecordAndEvalObj.3
    ln RecEvalObj.3 Tcl_RecordAndEvalObj.3
fi
if test -r RegExp.3; then
    rm -f Tcl_RegExpCompile.3
    ln RegExp.3 Tcl_RegExpCompile.3
fi
if test -r RegExp.3; then
    rm -f Tcl_RegExpExec.3
    ln RegExp.3 Tcl_RegExpExec.3
fi
d1023 3
a1025 35
if test -r RegExp.3; then
    rm -f Tcl_RegExpRange.3
    ln RegExp.3 Tcl_RegExpRange.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_RegisterChannel.3
    ln OpenFileChnl.3 Tcl_RegisterChannel.3
fi
if test -r ObjectType.3; then
    rm -f Tcl_RegisterObjType.3
    ln ObjectType.3 Tcl_RegisterObjType.3
fi
if test -r Preserve.3; then
    rm -f Tcl_Release.3
    ln Preserve.3 Tcl_Release.3
fi
if test -r SetResult.3; then
    rm -f Tcl_ResetResult.3
    ln SetResult.3 Tcl_ResetResult.3
fi
if test -r SplitList.3; then
    rm -f Tcl_ScanElement.3
    ln SplitList.3 Tcl_ScanElement.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_Seek.3
    ln OpenFileChnl.3 Tcl_Seek.3
fi
if test -r Notifier.3; then
    rm -f Tcl_ServiceAll.3
    ln Notifier.3 Tcl_ServiceAll.3
fi
if test -r Notifier.3; then
    rm -f Tcl_ServiceEvent.3
    ln Notifier.3 Tcl_ServiceEvent.3
d1027 3
a1029 3
if test -r AssocData.3; then
    rm -f Tcl_SetAssocData.3
    ln AssocData.3 Tcl_SetAssocData.3
d1031 3
a1033 3
if test -r BoolObj.3; then
    rm -f Tcl_SetBooleanObj.3
    ln BoolObj.3 Tcl_SetBooleanObj.3
d1035 3
a1037 3
if test -r CrtChannel.3; then
    rm -f Tcl_SetChannelBufferSize.3
    ln CrtChannel.3 Tcl_SetChannelBufferSize.3
d1039 3
a1041 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_SetChannelOption.3
    ln OpenFileChnl.3 Tcl_SetChannelOption.3
d1043 3
a1045 7
if test -r CrtObjCmd.3; then
    rm -f Tcl_SetCommandInfo.3
    ln CrtObjCmd.3 Tcl_SetCommandInfo.3
fi
if test -r CrtChannel.3; then
    rm -f Tcl_SetDefaultTranslation.3
    ln CrtChannel.3 Tcl_SetDefaultTranslation.3
d1047 11
a1057 3
if test -r DoubleObj.3; then
    rm -f Tcl_SetDoubleObj.3
    ln DoubleObj.3 Tcl_SetDoubleObj.3
d1063 3
a1065 3
if test -r AddErrInfo.3; then
    rm -f Tcl_SetErrorCode.3
    ln AddErrInfo.3 Tcl_SetErrorCode.3
d1067 3
a1069 23
if test -r Hash.3; then
    rm -f Tcl_SetHashValue.3
    ln Hash.3 Tcl_SetHashValue.3
fi
if test -r IntObj.3; then
    rm -f Tcl_SetIntObj.3
    ln IntObj.3 Tcl_SetIntObj.3
fi
if test -r ListObj.3; then
    rm -f Tcl_SetListObj.3
    ln ListObj.3 Tcl_SetListObj.3
fi
if test -r IntObj.3; then
    rm -f Tcl_SetLongObj.3
    ln IntObj.3 Tcl_SetLongObj.3
fi
if test -r Notifier.3; then
    rm -f Tcl_SetMaxBlockTime.3
    ln Notifier.3 Tcl_SetMaxBlockTime.3
fi
if test -r StringObj.3; then
    rm -f Tcl_SetObjLength.3
    ln StringObj.3 Tcl_SetObjLength.3
d1075 3
a1077 3
if test -r SetRecLmt.3; then
    rm -f Tcl_SetRecursionLimit.3
    ln SetRecLmt.3 Tcl_SetRecursionLimit.3
d1083 11
a1093 3
if test -r Notifier.3; then
    rm -f Tcl_SetServiceMode.3
    ln Notifier.3 Tcl_SetServiceMode.3
d1095 3
a1097 3
if test -r GetStdChan.3; then
    rm -f Tcl_SetStdChannel.3
    ln GetStdChan.3 Tcl_SetStdChannel.3
d1099 3
a1101 3
if test -r StringObj.3; then
    rm -f Tcl_SetStringObj.3
    ln StringObj.3 Tcl_SetStringObj.3
d1103 3
a1105 3
if test -r Notifier.3; then
    rm -f Tcl_SetTimer.3
    ln Notifier.3 Tcl_SetTimer.3
d1115 28
d1151 12
d1167 8
d1183 119
a1301 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_Tell.3
    ln OpenFileChnl.3 Tcl_Tell.3
a1310 20
if test -r Translate.3; then
    rm -f Tcl_TranslateFileName.3
    ln Translate.3 Tcl_TranslateFileName.3
fi
if test -r LinkVar.3; then
    rm -f Tcl_UnlinkVar.3
    ln LinkVar.3 Tcl_UnlinkVar.3
fi
if test -r OpenFileChnl.3; then
    rm -f Tcl_UnregisterChannel.3
    ln OpenFileChnl.3 Tcl_UnregisterChannel.3
fi
if test -r SetVar.3; then
    rm -f Tcl_UnsetVar.3
    ln SetVar.3 Tcl_UnsetVar.3
fi
if test -r SetVar.3; then
    rm -f Tcl_UnsetVar2.3
    ln SetVar.3 Tcl_UnsetVar2.3
fi
a1318 16
if test -r UpVar.3; then
    rm -f Tcl_UpVar.3
    ln UpVar.3 Tcl_UpVar.3
fi
if test -r UpVar.3; then
    rm -f Tcl_UpVar2.3
    ln UpVar.3 Tcl_UpVar2.3
fi
if test -r LinkVar.3; then
    rm -f Tcl_UpdateLinkedVar.3
    ln LinkVar.3 Tcl_UpdateLinkedVar.3
fi
if test -r Eval.3; then
    rm -f Tcl_VarEval.3
    ln Eval.3 Tcl_VarEval.3
fi
d1327 11
a1337 3
if test -r Notifier.3; then
    rm -f Tcl_WaitForEvent.3
    ln Notifier.3 Tcl_WaitForEvent.3
d1339 63
a1401 3
if test -r OpenFileChnl.3; then
    rm -f Tcl_Write.3
    ln OpenFileChnl.3 Tcl_Write.3
d1407 4
d1414 8
@

