1 parent 68aa37f commit f17be5dCopy full SHA for f17be5d
1 file changed
Python/fmod.c
@@ -24,12 +24,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24
25
/* Portable fmod(x, y) implementation for systems that don't have it */
26
27
-#include <math.h>
+#ifdef HAVE_CONFIG_H
28
+#include "config.h"
29
+#endif
30
+
31
+#include "mymath.h"
32
#include <errno.h>
33
34
double
-fmod(x, y)
- double x, y;
35
+fmod(double x, double y)
36
{
37
double i, f;
38
0 commit comments