diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-27 13:31:38 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-27 13:31:38 (GMT) |
commit | 46c3b72550c1d37fbfadffdd513695b4dcd32089 (patch) | |
tree | f424a959d2d4613c3520a3917a614a939b5ab9a2 | |
parent | ff391d8dfee52b844b9dffba582d42e0165355fc (diff) | |
download | tcl-46c3b72550c1d37fbfadffdd513695b4dcd32089.zip tcl-46c3b72550c1d37fbfadffdd513695b4dcd32089.tar.gz tcl-46c3b72550c1d37fbfadffdd513695b4dcd32089.tar.bz2 |
Added missing type to declaration
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 93a9514..290576c 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.284 2006/10/27 12:44:08 dkf Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.285 2006/10/27 13:31:38 dkf Exp $ */ #ifndef _TCLINT @@ -2125,7 +2125,7 @@ MODULE_SCOPE void TclInitLimitSupport(Tcl_Interp *interp); MODULE_SCOPE void TclInitNamespaceSubsystem(void); MODULE_SCOPE void TclInitNotifier(void); MODULE_SCOPE void TclInitObjSubsystem(void); -MODULE_SCOPE void TclInitSubsystems (); +MODULE_SCOPE void TclInitSubsystems(void); MODULE_SCOPE int TclInterpReady(Tcl_Interp *interp); MODULE_SCOPE int TclIsLocalScalar(CONST char *src, int len); MODULE_SCOPE int TclJoinThread(Tcl_ThreadId id, int* result); |