diff options
author | stanton <stanton@noemail.net> | 1999-02-03 02:58:24 (GMT) |
---|---|---|
committer | stanton <stanton@noemail.net> | 1999-02-03 02:58:24 (GMT) |
commit | 70ee17b4ed302454cf9a52ae11a41d3873d24eff (patch) | |
tree | b8a03bfb9bee80e854f9cfe3f4379b3bb4a3f385 /generic/tclTest.c | |
parent | 230c5c037a6ad78f260db8e2fb58b417aac289cb (diff) | |
download | tcl-70ee17b4ed302454cf9a52ae11a41d3873d24eff.zip tcl-70ee17b4ed302454cf9a52ae11a41d3873d24eff.tar.gz tcl-70ee17b4ed302454cf9a52ae11a41d3873d24eff.tar.bz2 |
* win/tclAppInit.c:
* unix/tclAppInit.c:
* mac/tclMacAppInit.c:
* generic/tclTest.c: Changed some EXTERN declarations to extern
since they are not defining exported interfaces. This avoids
generating useless declspec() attributes and makes the windows
makefile simpler.
* generic/tcl.h: Moved Tcl_AppInit declaration to end and cleared
out TCL_STORAGE_CLASS so it is not declared with a declspec().
FossilOrigin-Name: 92d52aa5e1c74618d6f05105eed253980a25d98a
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r-- | generic/tclTest.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 32b326c..23dc31f 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTest.c,v 1.7 1999/02/03 00:55:06 stanton Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.8 1999/02/03 02:58:25 stanton Exp $ */ #define TCL_TEST @@ -217,10 +217,12 @@ static int TestwordendObjCmd _ANSI_ARGS_((ClientData dummy, Tcl_Obj *CONST objv[])); /* - * External (platform specific) initialization routine: + * External (platform specific) initialization routine, this declaration + * explicitly does not use EXTERN since this code does not get compiled + * into the library: */ -EXTERN int TclplatformtestInit _ANSI_ARGS_(( +extern int TclplatformtestInit _ANSI_ARGS_(( Tcl_Interp *interp)); /* |