From 6923e134fc525b3d8a8089267ecb4bb98d08d3a3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 2 Nov 1990 17:50:43 +0000 Subject: Moved prototyes for fmod and pow, and don't use them for THINK C. --- Objects/floatobject.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 1707c30..c2b132e 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -14,6 +14,11 @@ #include "objimpl.h" #include "errors.h" +#ifndef THINK_C +extern double fmod PROTO((double, double)); +extern double pow PROTO((double, double)); +#endif + object * newfloatobject(fval) double fval; @@ -157,7 +162,6 @@ float_rem(v, w) object *w; { double wx; - extern double fmod PROTO((double, double)); if (!is_floatobject(w)) { err_badarg(); return NULL; @@ -176,7 +180,6 @@ float_pow(v, w) object *w; { double iv, iw, ix; - extern double pow PROTO((double, double)); if (!is_floatobject(w)) { err_badarg(); return NULL; -- cgit v0.12