From 98d5433852656b7e6b0e5769860d3ae3a2d739a3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 12 Nov 1991 15:44:14 +0000 Subject: [PATCH] Added PROTO macro where needed. --- Modules/mathmodule.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 189a0c16e5f..751f02b2b72 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)