summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-24 14:43:35 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-24 14:43:35 (GMT)
commit58d0510245c65cff2ded9d3923bf1ef2b85f4214 (patch)
treeb10bce44a0eb8a479190f18243f511a0c64f2be6 /Modules/_tkinter.c
parent8ec68fded2a99b2c2e2e637e42839741fedbf0a1 (diff)
downloadcpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.zip
cpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.tar.gz
cpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.tar.bz2
ANSIfy some more forward declarations.
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index f61b0de..1569529 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -433,8 +433,8 @@ Tcl_AppInit(Tcl_Interp *interp)
* `tkMain.c'.
*/
-static void EnableEventHook(); /* Forward */
-static void DisableEventHook(); /* Forward */
+static void EnableEventHook(void); /* Forward */
+static void DisableEventHook(void); /* Forward */
static TkappObject *
Tkapp_New(char *screenName, char *baseName, char *className, int interactive)