summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjingham <jingham>1999-03-22 06:43:04 (GMT)
committerjingham <jingham>1999-03-22 06:43:04 (GMT)
commitd7a5513e50d8a3b9004de9e0e878dd896be0ad8b (patch)
tree93ea03045ffac503d8e7338c7c0d64e4fe5f6ae2
parent8a6b34cf70ed250038f1e71af3d7b9327460d9db (diff)
downloadtk-d7a5513e50d8a3b9004de9e0e878dd896be0ad8b.zip
tk-d7a5513e50d8a3b9004de9e0e878dd896be0ad8b.tar.gz
tk-d7a5513e50d8a3b9004de9e0e878dd896be0ad8b.tar.bz2
Changed extern to EXTERN
-rw-r--r--mac/tkMacAppInit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mac/tkMacAppInit.c b/mac/tkMacAppInit.c
index 5b73a65..297afe5 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.5 1999/02/04 20:57:18 stanton Exp $
+ * RCS: @(#) $Id: tkMacAppInit.c,v 1.5.2.1 1999/03/22 06:43:05 jingham 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;