Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 464a0a1

Browse files
committed
for MPW __SC__
1 parent 07e3a7e commit 464a0a1

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

Python/fmod.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2424

2525
/* Portable fmod(x, y) implementation for systems that don't have it */
2626

27-
#include <math.h>
27+
#ifdef HAVE_CONFIG_H
28+
#include "config.h"
29+
#endif
30+
31+
#include "mymath.h"
2832
#include <errno.h>
2933

3034
double
31-
fmod(x, y)
32-
double x, y;
35+
fmod(double x, double y)
3336
{
3437
double i, f;
3538

0 commit comments

Comments
 (0)