summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-03-01 10:34:29 (GMT)
committerGuido van Rossum <guido@python.org>1995-03-01 10:34:29 (GMT)
commit6964f73b85ffe82d99ff644d90baa335ab55691c (patch)
treeb413460b20bfdc5fc45caa249df7e392df016a60 /Modules
parentd9b6b5c756aaf9c5ab78a5e4cf1855a19215915c (diff)
downloadcpython-6964f73b85ffe82d99ff644d90baa335ab55691c.zip
cpython-6964f73b85ffe82d99ff644d90baa335ab55691c.tar.gz
cpython-6964f73b85ffe82d99ff644d90baa335ab55691c.tar.bz2
include mymath.h
Diffstat (limited to 'Modules')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 5309206..f4089f4 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -31,7 +31,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define getdoublearg(v, a) getargs(v, "d", a)
#define get2doublearg(v, a, b) getargs(v, "(dd)", a, b)
-#include <math.h>
+#include "mymath.h"
#ifndef __STDC__
extern double fmod PROTO((double, double));