1
0
mirror of https://github.com/diegocr/libnix.git synced 2026-03-19 07:16:45 +00:00
Files
amiga-libnix3/math/hypot.c
2010-07-27 16:58:17 +00:00

11 lines
191 B
C

#include <proto/mathieeedoubtrans.h>
#include "stabs.h"
double hypot(double x,double y)
{ register double v = (x*x+y*y);
return IEEEDPSqrt(v);
}
ALIAS(hypotf,hypot);
ALIAS(hypotl,hypot);