amiga-ixemul/static/sqrtf.c_

6 lines
77 B
Plaintext

#include <math.h>
__inline float sqrtf2(float x)
{
return sqrt(x);
}