diff options
Diffstat (limited to 'unix/tclLoadNext.c')
| -rw-r--r-- | unix/tclLoadNext.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/unix/tclLoadNext.c b/unix/tclLoadNext.c index 06df2db..eb0affa 100644 --- a/unix/tclLoadNext.c +++ b/unix/tclLoadNext.c @@ -46,10 +46,11 @@ TclpDlopen(      Tcl_LoadHandle *loadHandle,	/* Filled with token for dynamically loaded  				 * file which will be passed back to  				 * (*unloadProcPtr)() to unload the file. */ -    Tcl_FSUnloadFileProc **unloadProcPtr) +    Tcl_FSUnloadFileProc **unloadProcPtr,  				/* Filled with address of Tcl_FSUnloadFileProc  				 * function which should be used for this  				 * file. */ +    int flags)  {      Tcl_LoadHandle newHandle;      struct mach_header *header; @@ -133,8 +134,8 @@ FindSymbol(      const char *symbol)  {      Tcl_PackageInitProc *proc = NULL; -  -   if (symbol) { + +    if (symbol) {  	char sym[strlen(symbol) + 2];  	sym[0] = '_'; | 
