Added extern defn of hypot().

This commit is contained in:
Guido van Rossum 1996-07-30 16:55:08 +00:00
parent d3c1bd3931
commit 9de624d784
1 changed files with 6 additions and 0 deletions

View File

@ -14,3 +14,9 @@
#ifdef SYMANTEC__CFM68K__
#pragma lib_export on
#endif
#if defined(HAVE_HYPOT)
/* Defined in <math.h> */
#else
extern double hypot PROTO((double, double)); /* defined in mathmodule.c */
#endif