From: Guido van Rossum Date: Tue, 30 Jul 1996 16:55:08 +0000 (+0000) Subject: Added extern defn of hypot(). X-Git-Tag: v1.4b2~126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9de624d784b20840160e4083ca4ec3e7095ccbb7;p=thirdparty%2FPython%2Fcpython.git Added extern defn of hypot(). --- diff --git a/Include/mymath.h b/Include/mymath.h index 36ee1eb133a4..13d32a6e0865 100644 --- a/Include/mymath.h +++ b/Include/mymath.h @@ -14,3 +14,9 @@ #ifdef SYMANTEC__CFM68K__ #pragma lib_export on #endif + +#if defined(HAVE_HYPOT) +/* Defined in */ +#else +extern double hypot PROTO((double, double)); /* defined in mathmodule.c */ +#endif