4 lines
89 B
C++
4 lines
89 B
C++
_CLC_OVERLOAD _CLC_DEF GENTYPE hypot(GENTYPE x, GENTYPE y) {
|
|
return sqrt(x*x + y*y);
|
|
}
|