Commit 413ab28f authored by Guido van Rossum's avatar Guido van Rossum

Added some prototypes.

parent ced534a4
...@@ -157,7 +157,7 @@ float_rem(v, w) ...@@ -157,7 +157,7 @@ float_rem(v, w)
object *w; object *w;
{ {
double wx; double wx;
extern double fmod(); extern double fmod PROTO((double, double));
if (!is_floatobject(w)) { if (!is_floatobject(w)) {
err_badarg(); err_badarg();
return NULL; return NULL;
...@@ -176,7 +176,7 @@ float_pow(v, w) ...@@ -176,7 +176,7 @@ float_pow(v, w)
object *w; object *w;
{ {
double iv, iw, ix; double iv, iw, ix;
extern double pow(); extern double pow PROTO((double, double));
if (!is_floatobject(w)) { if (!is_floatobject(w)) {
err_badarg(); err_badarg();
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment