diff options
author | Guido van Rossum <guido@python.org> | 1991-11-12 15:44:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-11-12 15:44:14 (GMT) |
commit | 98d5433852656b7e6b0e5769860d3ae3a2d739a3 (patch) | |
tree | 0cc82d17c01e61c756473b92f84928dd88f48130 | |
parent | 32db5e391bf06d3e745127f6eb600947e399f878 (diff) | |
download | cpython-98d5433852656b7e6b0e5769860d3ae3a2d739a3.zip cpython-98d5433852656b7e6b0e5769860d3ae3a2d739a3.tar.gz cpython-98d5433852656b7e6b0e5769860d3ae3a2d739a3.tar.bz2 |
Added PROTO macro where needed.
-rw-r--r-- | Modules/mathmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 189a0c1..751f02b 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -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) |