Files
2015-04-16 09:16:48 +02:00

7 lines
99 B
C

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