]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added some prototypes.
authorGuido van Rossum <guido@python.org>
Tue, 30 Oct 1990 13:30:32 +0000 (13:30 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Oct 1990 13:30:32 +0000 (13:30 +0000)
Objects/floatobject.c

index d1ed9b9706d0ea25eeb4de794af8ed06ced35947..1707c30da68bfb5b387181d8ae446655dae892b6 100644 (file)
@@ -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;