From: Guido van Rossum Date: Mon, 27 Feb 1995 10:15:10 +0000 (+0000) Subject: for MPW __SC__ X-Git-Tag: v1.2b4~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=464a0a100f163025e87e7aec4b5fa26bce0f18e3;p=thirdparty%2FPython%2Fcpython.git for MPW __SC__ --- diff --git a/Python/fmod.c b/Python/fmod.c index 3ddab75abb16..777166bcb631 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;