7 lines
99 B
C
7 lines
99 B
C
|
|
__attribute__((always_inline)) inline double hypot(double x,double y)
|
|
{
|
|
return sqrt(x*x+y*y);
|
|
}
|
|
|