From ed77bac472760cb55f64f20558afdf76b6ee4f1d Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Mon, 24 Jul 2000 15:26:39 +0000 Subject: [PATCH] Fix floattime prototype ((void), not (double)) --- Modules/timemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 189476c498..18223b2883 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -91,7 +91,7 @@ extern int ftime(struct timeb *); /* Forward declarations */ static int floatsleep(double); -static double floattime(double); +static double floattime(void); /* For Y2K check */ static PyObject *moddict; -- 2.40.0