Added PROTO macro where needed.

This commit is contained in:
Guido van Rossum 1991-11-12 15:44:14 +00:00
parent 32db5e391b
commit 98d5433852
1 changed files with 3 additions and 3 deletions

View File

@ -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)