diff options
author | dgp <dgp@users.sourceforge.net> | 2001-09-10 21:18:19 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-09-10 21:18:19 (GMT) |
commit | 82ef0abf09a1133e86d414254b30dd7d574b93da (patch) | |
tree | 2fa2361bf06d2e11d76ad7ed6de61f6e25110053 /unix/tclLoadShl.c | |
parent | 8008090a71e74c81242dbd6334829a5a5b29fba9 (diff) | |
download | tcl-82ef0abf09a1133e86d414254b30dd7d574b93da.zip tcl-82ef0abf09a1133e86d414254b30dd7d574b93da.tar.gz tcl-82ef0abf09a1133e86d414254b30dd7d574b93da.tar.bz2 |
* Added #include of tclInt.h; access to Tcl
internals, notably TclpUnloadFile(), is required. Thanks to
Bob Techentin for report and patch. [Bug 459305]
Diffstat (limited to 'unix/tclLoadShl.c')
-rw-r--r-- | unix/tclLoadShl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c index 5feb489..b99ecad 100644 --- a/unix/tclLoadShl.c +++ b/unix/tclLoadShl.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: tclLoadShl.c,v 1.6 2001/09/04 18:06:34 vincentdarley Exp $ + * RCS: @(#) $Id: tclLoadShl.c,v 1.7 2001/09/10 21:18:19 dgp Exp $ */ #include <dl.h> @@ -23,7 +23,7 @@ # undef EXTERN #endif -#include "tcl.h" +#include "tclInt.h" /* *---------------------------------------------------------------------- |