mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-13 22:42:28 +00:00
6 lines
88 B
C
6 lines
88 B
C
|
|
__attribute__((always_inline)) inline float sqrtf(float x)
|
|
{
|
|
return sqrt(x);
|
|
}
|