summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-24 15:26:39 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-24 15:26:39 (GMT)
commited77bac472760cb55f64f20558afdf76b6ee4f1d (patch)
tree902385711151774e0aec2f011e54c3b022b8f364 /Modules
parent58d0510245c65cff2ded9d3923bf1ef2b85f4214 (diff)
downloadcpython-ed77bac472760cb55f64f20558afdf76b6ee4f1d.zip
cpython-ed77bac472760cb55f64f20558afdf76b6ee4f1d.tar.gz
cpython-ed77bac472760cb55f64f20558afdf76b6ee4f1d.tar.bz2
Fix floattime prototype ((void), not (double))
Diffstat (limited to 'Modules')
-rw-r--r--Modules/timemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 189476c..18223b2 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;