]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
for MPW __SC__
authorGuido van Rossum <guido@python.org>
Mon, 27 Feb 1995 10:15:10 +0000 (10:15 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 27 Feb 1995 10:15:10 +0000 (10:15 +0000)
Python/fmod.c

index 3ddab75abb16ae76093c66c997ee49327309e8a8..777166bcb6318a108c6860461a08da8fc423ee05 100644 (file)
@@ -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 <math.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "mymath.h"
 #include <errno.h>
 
 double
-fmod(x, y)
-       double x, y;
+fmod(double x, double y)
 {
        double i, f;