summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-11-12 15:44:14 (GMT)
committerGuido van Rossum <guido@python.org>1991-11-12 15:44:14 (GMT)
commit98d5433852656b7e6b0e5769860d3ae3a2d739a3 (patch)
tree0cc82d17c01e61c756473b92f84928dd88f48130 /Modules
parent32db5e391bf06d3e745127f6eb600947e399f878 (diff)
downloadcpython-98d5433852656b7e6b0e5769860d3ae3a2d739a3.zip
cpython-98d5433852656b7e6b0e5769860d3ae3a2d739a3.tar.gz
cpython-98d5433852656b7e6b0e5769860d3ae3a2d739a3.tar.bz2
Added PROTO macro where needed.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/mathmodule.c6
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)