diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-24 15:26:39 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-24 15:26:39 (GMT) |
commit | ed77bac472760cb55f64f20558afdf76b6ee4f1d (patch) | |
tree | 902385711151774e0aec2f011e54c3b022b8f364 /Modules | |
parent | 58d0510245c65cff2ded9d3923bf1ef2b85f4214 (diff) | |
download | cpython-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.c | 2 |
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; |