diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-17 11:35:43 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-17 11:35:43 (GMT) |
commit | 932e04d6dbae28b0ff9d4230811eda7f29905f49 (patch) | |
tree | 827d6f710b706af2a60ed81d6560a9756568bcd4 /unix | |
parent | e7d3979e0a81af48f3e7bc932b5f674a344a736b (diff) | |
parent | 962b2df00bc011ad5322a0b9047d3286e93eba58 (diff) | |
download | tcl-932e04d6dbae28b0ff9d4230811eda7f29905f49.zip tcl-932e04d6dbae28b0ff9d4230811eda7f29905f49.tar.gz tcl-932e04d6dbae28b0ff9d4230811eda7f29905f49.tar.bz2 |
Merge 8.6
Diffstat (limited to 'unix')
-rw-r--r-- | unix/dltest/pkgooa.c | 7 | ||||
-rw-r--r-- | unix/tclXtTest.c | 3 |
2 files changed, 6 insertions, 4 deletions
diff --git a/unix/dltest/pkgooa.c b/unix/dltest/pkgooa.c index ff1cf1f..5aa48a5 100644 --- a/unix/dltest/pkgooa.c +++ b/unix/dltest/pkgooa.c @@ -84,10 +84,13 @@ static TclOOStubs stubsCopy = { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, - NULL, NULL, NULL, NULL, NULL, NULL, NULL, + NULL, NULL, NULL, NULL, NULL, NULL, NULL +#ifdef Tcl_MethodIsPrivate + ,NULL +#endif }; -extern DLLEXPORT int +DLLEXPORT int Pkgooa_Init( Tcl_Interp *interp) /* Interpreter in which the package is to be * made available. */ diff --git a/unix/tclXtTest.c b/unix/tclXtTest.c index 4ee7cca..882f497 100644 --- a/unix/tclXtTest.c +++ b/unix/tclXtTest.c @@ -16,7 +16,6 @@ #include "tcl.h" static Tcl_ObjCmdProc TesteventloopCmd; -extern DLLEXPORT Tcl_LibraryInitProc Tclxttest_Init; /* * Functions defined in tclXtNotify.c for use by users of the Xt Notifier: @@ -44,7 +43,7 @@ extern XtAppContext TclSetAppContext(XtAppContext ctx); *---------------------------------------------------------------------- */ -int +DLLEXPORT int Tclxttest_Init( Tcl_Interp *interp) /* Interpreter for application. */ { |