From: Guido van Rossum Date: Wed, 1 Mar 1995 10:34:29 +0000 (+0000) Subject: include mymath.h X-Git-Tag: v1.2b4~140 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6964f73b85ffe82d99ff644d90baa335ab55691c;p=thirdparty%2FPython%2Fcpython.git include mymath.h --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 5309206b66e0..f4089f4e864e 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 +#include "mymath.h" #ifndef __STDC__ extern double fmod PROTO((double, double));