amiga-ixemul/static/sqrtf.c

6 lines
88 B
C

__attribute__((always_inline)) inline float sqrtf(float x)
{
return sqrt(x);
}