diff options
author | stanton <stanton> | 1999-02-04 20:57:17 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-02-04 20:57:17 (GMT) |
commit | 955ce6fbcdcca30ded10dd5bdef28603b431da7f (patch) | |
tree | 0459a23cbcec93e95a6099adcc0857e42c69b553 /unix/tkAppInit.c | |
parent | e4a39867867a5e7241f1dc928fbef189a909847b (diff) | |
download | tk-955ce6fbcdcca30ded10dd5bdef28603b431da7f.zip tk-955ce6fbcdcca30ded10dd5bdef28603b431da7f.tar.gz tk-955ce6fbcdcca30ded10dd5bdef28603b431da7f.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.
Diffstat (limited to 'unix/tkAppInit.c')
-rw-r--r-- | unix/tkAppInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkAppInit.c b/unix/tkAppInit.c index 59900f1..5591d98 100644 --- a/unix/tkAppInit.c +++ b/unix/tkAppInit.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: tkAppInit.c,v 1.2 1998/09/14 18:23:54 stanton Exp $ + * RCS: @(#) $Id: tkAppInit.c,v 1.3 1999/02/04 20:57:18 stanton Exp $ */ #include "tk.h" @@ -24,7 +24,7 @@ extern int matherr(); int *tclDummyMathPtr = (int *) matherr; #ifdef TK_TEST -EXTERN int Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp)); +extern int Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp)); #endif /* TK_TEST */ /* |