]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added PROTO macro where needed.
authorGuido van Rossum <guido@python.org>
Tue, 12 Nov 1991 15:44:14 +0000 (15:44 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 12 Nov 1991 15:44:14 +0000 (15:44 +0000)
Modules/mathmodule.c

index 189a0c16e5f3f6aabb04cabe59c811326c5ed4d8..751f02b2b72974d368dcec788103f5bf2c179bd8 100644 (file)
@@ -104,9 +104,9 @@ FUNC1(math_sqrt, sqrt)
 FUNC1(math_tan, tan)
 FUNC1(math_tanh, tanh)
 
-double frexp(double, int *);
-double ldexp(double, int);
-double modf(double, double *);
+double frexp PROTO((double, int *));
+double ldexp PROTO((double, int));
+double modf PROTO((double, double *));
 
 static object *
 math_frexp(self, args)