diff options
author | dgp <dgp@users.sourceforge.net> | 2001-04-04 23:26:03 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-04-04 23:26:03 (GMT) |
commit | bd52d6035df1a821d013510801b9632b1691fdd3 (patch) | |
tree | 040afe85667a12a395500c3660ad7c9252c64d24 /generic | |
parent | 32d276270ed6e33e693b63807c57d0b50d71a363 (diff) | |
download | tcl-bd52d6035df1a821d013510801b9632b1691fdd3.zip tcl-bd52d6035df1a821d013510801b9632b1691fdd3.tar.gz tcl-bd52d6035df1a821d013510801b9632b1691fdd3.tar.bz2 |
Restore support for pre-ANSI compilers.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclMain.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclMain.c b/generic/tclMain.c index c3cabbf..479ef52 100644 --- a/generic/tclMain.c +++ b/generic/tclMain.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: tclMain.c,v 1.11 2000/11/03 20:30:27 hobbs Exp $ + * RCS: @(#) $Id: tclMain.c,v 1.12 2001/04/04 23:26:03 dgp Exp $ */ #include "tcl.h" @@ -404,7 +404,8 @@ Tcl_Main(argc, argv, appInitProc) */ void -Tcl_SetMainLoop(Tcl_MainLoopProc *proc) +Tcl_SetMainLoop(proc) + Tcl_MainLoopProc *proc; { mainLoopProc = proc; } |