Added extern defn of hypot().
This commit is contained in:
parent
d3c1bd3931
commit
9de624d784
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue