diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2013-06-14 10:15:50 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2013-06-14 10:15:50 (GMT) |
commit | a568be13ff4f59cf40bccb4a6b35fdb82ea67fb1 (patch) | |
tree | 453ebcfb8a37504341e21b11dc9db16f1b0fdc1e /unix/tclAppInit.c | |
parent | 3e35a74dec03b9131cf38cb0759c4d7c6ab5a33a (diff) | |
parent | 508ffc2ff62d51257ca696d2feec8d274358a4b4 (diff) | |
download | tcl-a568be13ff4f59cf40bccb4a6b35fdb82ea67fb1.zip tcl-a568be13ff4f59cf40bccb4a6b35fdb82ea67fb1.tar.gz tcl-a568be13ff4f59cf40bccb4a6b35fdb82ea67fb1.tar.bz2 |
Don't use deprecated stricmp/strnicmp any more, but underscored variant for non-GNU compilers.
Some formatting - improved comments.
FossilOrigin-Name: cc8464e99f65f44bbb8a38474e1f19909354856b
Diffstat (limited to 'unix/tclAppInit.c')
-rw-r--r-- | unix/tclAppInit.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/unix/tclAppInit.c b/unix/tclAppInit.c index f3edcff..9bbc88b 100644 --- a/unix/tclAppInit.c +++ b/unix/tclAppInit.c @@ -22,14 +22,14 @@ extern Tcl_PackageInitProc Tcltest_SafeInit; #endif /* TCL_TEST */ #ifdef TCL_XT_TEST -extern void XtToolkitInitialize(void); -extern int Tclxttest_Init(Tcl_Interp *interp); -#endif +extern void XtToolkitInitialize(void); +extern Tcl_PackageInitProc Tclxttest_Init; +#endif /* TCL_XT_TEST */ /* * The following #if block allows you to change the AppInit function by using * a #define of TCL_LOCAL_APPINIT instead of rewriting this entire file. The - * #if checks for that #define and uses Tcl_AppInit if it doesn't exist. + * #if checks for that #define and uses Tcl_AppInit if it does not exist. */ #ifndef TCL_LOCAL_APPINIT @@ -71,7 +71,7 @@ MODULE_SCOPE int TCL_LOCAL_MAIN_HOOK(int *argc, char ***argv); int main( int argc, /* Number of command-line arguments. */ - char **argv) /* Values of command-line arguments. */ + char *argv[]) /* Values of command-line arguments. */ { #ifdef TCL_XT_TEST XtToolkitInitialize(); @@ -145,8 +145,8 @@ Tcl_AppInit( /* * Specify a user-specific startup file to invoke if the application is * run interactively. Typically the startup file is "~/.apprc" where "app" - * is the name of the application. If this line is deleted then no user- - * specific startup file will be run under any conditions. + * is the name of the application. If this line is deleted then no + * user-specific startup file will be run under any conditions. */ #ifdef DJGPP |