From: Guido van Rossum Date: Tue, 12 Nov 1991 15:44:14 +0000 (+0000) Subject: Added PROTO macro where needed. X-Git-Tag: v0.9.8~745 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98d5433852656b7e6b0e5769860d3ae3a2d739a3;p=thirdparty%2FPython%2Fcpython.git Added PROTO macro where needed. --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 189a0c16e5f3..751f02b2b729 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)