From: Thomas Wouters Date: Mon, 24 Jul 2000 15:26:39 +0000 (+0000) Subject: Fix floattime prototype ((void), not (double)) X-Git-Tag: v2.0b1~740 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed77bac472760cb55f64f20558afdf76b6ee4f1d;p=thirdparty%2FPython%2Fcpython.git Fix floattime prototype ((void), not (double)) --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 189476c498bf..18223b2883d9 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;