summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-26 19:42:20 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-26 19:42:20 (GMT)
commita92c9bd5f0598832ec94d0e6be9d13bbe832996b (patch)
tree0ccbd8c5625ed6f1c511e8a001f9428dc9f1d212 /win
parent956a15e648ce2ba160674eadc38654bdc65d7999 (diff)
parent23d2079bc9c936267b2fedfc22e9709225b20f0a (diff)
downloadtcl-a92c9bd5f0598832ec94d0e6be9d13bbe832996b.zip
tcl-a92c9bd5f0598832ec94d0e6be9d13bbe832996b.tar.gz
tcl-a92c9bd5f0598832ec94d0e6be9d13bbe832996b.tar.bz2
get rid of _ANSI_ARGS_
Diffstat (limited to 'win')
-rw-r--r--win/tclAppInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c
index 289a3c3..0edd2c3 100644
--- a/win/tclAppInit.c
+++ b/win/tclAppInit.c
@@ -59,7 +59,7 @@ main(
#ifndef TCL_LOCAL_APPINIT
#define TCL_LOCAL_APPINIT Tcl_AppInit
#endif
- extern int TCL_LOCAL_APPINIT _ANSI_ARGS_((Tcl_Interp *interp));
+ extern int TCL_LOCAL_APPINIT (Tcl_Interp *interp);
/*
* The following #if block allows you to change how Tcl finds the startup
@@ -68,7 +68,7 @@ main(
*/
#ifdef TCL_LOCAL_MAIN_HOOK
- extern int TCL_LOCAL_MAIN_HOOK _ANSI_ARGS_((int *argc, char ***argv));
+ extern int TCL_LOCAL_MAIN_HOOK (int *argc, char ***argv);
#endif
char *p;