diff options
Diffstat (limited to 'Modules/mathmodule.c')
-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) |