From 464a0a100f163025e87e7aec4b5fa26bce0f18e3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 27 Feb 1995 10:15:10 +0000 Subject: for MPW __SC__ --- Python/fmod.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Python/fmod.c b/Python/fmod.c index 3ddab75..777166b 100644 --- a/Python/fmod.c +++ b/Python/fmod.c @@ -24,12 +24,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Portable fmod(x, y) implementation for systems that don't have it */ -#include +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "mymath.h" #include double -fmod(x, y) - double x, y; +fmod(double x, double y) { double i, f; -- cgit v0.12