diff options
author | vincentdarley <vincentdarley> | 2002-07-17 20:02:43 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-07-17 20:02:43 (GMT) |
commit | e1074e1811926784013cdee67c5f68f4b7f7353c (patch) | |
tree | eea5be26ac429aef48a06d4b0bebf8955d1bd410 /unix/tclLoadDl.c | |
parent | 7074d76f2ba74ea9a53f47fb4815145982285625 (diff) | |
download | tcl-e1074e1811926784013cdee67c5f68f4b7f7353c.zip tcl-e1074e1811926784013cdee67c5f68f4b7f7353c.tar.gz tcl-e1074e1811926784013cdee67c5f68f4b7f7353c.tar.bz2 |
load internals refactoring
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r-- | unix/tclLoadDl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c index 951a8cb..aa5fab7 100644 --- a/unix/tclLoadDl.c +++ b/unix/tclLoadDl.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: tclLoadDl.c,v 1.9 2002/07/17 20:00:46 vincentdarley Exp $ + * RCS: @(#) $Id: tclLoadDl.c,v 1.10 2002/07/17 20:02:43 vincentdarley Exp $ */ #include "tclInt.h" @@ -84,6 +84,7 @@ TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr) *unloadProcPtr = &TclpUnloadFile; *loadHandle = (TclLoadHandle)handle; + return TCL_OK; } Tcl_PackageInitProc* |