From: Guido van Rossum Date: Tue, 30 Oct 1990 13:30:32 +0000 (+0000) Subject: Added some prototypes. X-Git-Tag: v0.9.8~1137 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=726749cc5b98364f0e9f8b26c38b84df11513be6;p=thirdparty%2FPython%2Fcpython.git Added some prototypes. --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index d1ed9b9706d0..1707c30da68b 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -157,7 +157,7 @@ float_rem(v, w) object *w; { double wx; - extern double fmod(); + extern double fmod PROTO((double, double)); if (!is_floatobject(w)) { err_badarg(); return NULL; @@ -176,7 +176,7 @@ float_pow(v, w) object *w; { double iv, iw, ix; - extern double pow(); + extern double pow PROTO((double, double)); if (!is_floatobject(w)) { err_badarg(); return NULL;