Moved prototyes for fmod and pow, and don't use them for THINK C.

This commit is contained in:
Guido van Rossum 1990-11-02 17:50:43 +00:00
parent f5401bd49e
commit 6923e134fc
1 changed files with 5 additions and 2 deletions

View File

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