diff options
author | vincentdarley <vincentdarley> | 2002-07-17 20:02:43 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-07-17 20:02:43 (GMT) |
commit | 0f9b38f8caddc3ca43e59ab2104f2772b4acab02 (patch) | |
tree | eea5be26ac429aef48a06d4b0bebf8955d1bd410 /unix/tclLoadDl.c | |
parent | 97fec6e034f2bcef4d51896ee02dbe0e1d8af307 (diff) | |
download | tcl-0f9b38f8caddc3ca43e59ab2104f2772b4acab02.zip tcl-0f9b38f8caddc3ca43e59ab2104f2772b4acab02.tar.gz tcl-0f9b38f8caddc3ca43e59ab2104f2772b4acab02.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* |