]> granicus.if.org Git - python/commitdiff
Fix floattime prototype ((void), not (double))
authorThomas Wouters <thomas@python.org>
Mon, 24 Jul 2000 15:26:39 +0000 (15:26 +0000)
committerThomas Wouters <thomas@python.org>
Mon, 24 Jul 2000 15:26:39 +0000 (15:26 +0000)
Modules/timemodule.c

index 189476c498bf04ec95a4187de01b7a080f878c60..18223b2883d949809946a5af7104ab45dcea681a 100644 (file)
@@ -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;