From 01c6526c0ebd83f418046edcc678c9a458c45f32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 6 Mar 2001 12:14:54 +0000 Subject: Avoid giving prototypes on Solaris. --- Objects/floatobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 2f1cbdf..1215901 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -28,7 +28,7 @@ extern double fmod(double, double); extern double pow(double, double); #endif -#ifdef sun +#if defined(sun) && !defined(__SVR4) /* On SunOS4.1 only libm.a exists. Make sure that references to all needed math functions exist in the executable, so that dynamic loading of mathmodule does not fail. */ -- cgit v0.12