mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 06:11:40 +00:00
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);
|
|
}
|
|
|