amiga-ixemul/static/hypot.c

7 lines
99 B
C

__attribute__((always_inline)) inline double hypot(double x,double y)
{
return sqrt(x*x+y*y);
}