From 4d3468deab2a33a41c97981068dbc05d9f9df7f5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 17 Jan 1995 16:33:14 +0000 Subject: don't declare fmod/pow for any STDC compiler --- Objects/floatobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index b1bb968..c7bdbed 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -59,7 +59,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define LONG_MIN (-LONG_MAX-1) #endif -#ifndef macintosh +#ifndef __STDC__ extern double fmod PROTO((double, double)); extern double pow PROTO((double, double)); #endif -- cgit v0.12