summaryrefslogtreecommitdiffstats
path: root/mac/tkMacAppInit.c
diff options
context:
space:
mode:
authorstanton <stanton@noemail.net>1999-02-04 20:57:16 (GMT)
committerstanton <stanton@noemail.net>1999-02-04 20:57:16 (GMT)
commitbd489ea171d72563074b3d282f7dfe239d005db9 (patch)
tree0459a23cbcec93e95a6099adcc0857e42c69b553 /mac/tkMacAppInit.c
parentcf3edc298caa7899a07491424eae43e80eafe42e (diff)
downloadtk-bd489ea171d72563074b3d282f7dfe239d005db9.zip
tk-bd489ea171d72563074b3d282f7dfe239d005db9.tar.gz
tk-bd489ea171d72563074b3d282f7dfe239d005db9.tar.bz2
* mac/tkMacAppInit.c:
* generic/tkTest.c: * generic/tkAppInit.c: * win/winMain.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. FossilOrigin-Name: 3afc334c67e9e295066148c5eeca74ab9bca9c3b
Diffstat (limited to 'mac/tkMacAppInit.c')
-rw-r--r--mac/tkMacAppInit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mac/tkMacAppInit.c b/mac/tkMacAppInit.c
index 00db916..5b73a65 100644
--- a/mac/tkMacAppInit.c
+++ b/mac/tkMacAppInit.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacAppInit.c,v 1.4 1998/11/11 17:29:48 jingham Exp $
+ * RCS: @(#) $Id: tkMacAppInit.c,v 1.5 1999/02/04 20:57:18 stanton Exp $
*/
#include <Gestalt.h>
@@ -26,14 +26,14 @@
#include "tclMac.h"
#ifdef TK_TEST
-EXTERN int Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp));
+extern int Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp));
#endif /* TK_TEST */
#ifdef TCL_TEST
-EXTERN int Procbodytest_Init _ANSI_ARGS_((Tcl_Interp *interp));
-EXTERN int Procbodytest_SafeInit _ANSI_ARGS_((Tcl_Interp *interp));
-EXTERN int TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp));
-EXTERN int Tcltest_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 TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp));
+extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));
#endif /* TCL_TEST */
Tcl_Interp *gStdoutInterp = NULL;