summaryrefslogtreecommitdiffstats
path: root/win/tclAppInit.c
diff options
context:
space:
mode:
authorstanton <stanton>1999-02-03 02:58:25 (GMT)
committerstanton <stanton>1999-02-03 02:58:25 (GMT)
commit17481a9360ea758b106cce6d9ec42c575a877eb5 (patch)
treeb8a03bfb9bee80e854f9cfe3f4379b3bb4a3f385 /win/tclAppInit.c
parente0ef1543276028c3f855c5e12b53551fc20fdebf (diff)
downloadtcl-17481a9360ea758b106cce6d9ec42c575a877eb5.zip
tcl-17481a9360ea758b106cce6d9ec42c575a877eb5.tar.gz
tcl-17481a9360ea758b106cce6d9ec42c575a877eb5.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().
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r--win/tclAppInit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c
index 3c31bb2..a782a54 100644
--- a/win/tclAppInit.c
+++ b/win/tclAppInit.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: tclAppInit.c,v 1.3 1998/10/05 22:32:12 escoffon Exp $
+ * RCS: @(#) $Id: tclAppInit.c,v 1.4 1999/02/03 02:58:26 stanton Exp $
*/
#include "tcl.h"
@@ -18,10 +18,10 @@
#include <locale.h>
#ifdef TCL_TEST
-EXTERN int Procbodytest_Init _ANSI_ARGS_((Tcl_Interp *interp));
-EXTERN int Procbodytest_SafeInit _ANSI_ARGS_((Tcl_Interp *interp));
-EXTERN int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));
-EXTERN int TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp));
+extern int Procbodytest_Init _ANSI_ARGS_((Tcl_Interp *interp));
+extern int Procbodytest_SafeInit _ANSI_ARGS_((Tcl_Interp *interp));
+extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));
+extern int TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp));
#endif /* TCL_TEST */
static void setargv _ANSI_ARGS_((int *argcPtr, char ***argvPtr));