Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e3a7e commit 464a0a1Copy full SHA for 464a0a1
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