From: Guido van Rossum Date: Tue, 17 Jan 1995 16:33:14 +0000 (+0000) Subject: don't declare fmod/pow for any STDC compiler X-Git-Tag: v1.2b2~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d3468deab2a33a41c97981068dbc05d9f9df7f5;p=thirdparty%2FPython%2Fcpython.git don't declare fmod/pow for any STDC compiler --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index b1bb96821fd3..c7bdbed53fdb 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