amiga-ixemul/static/expf.c

6 lines
89 B
C

__attribute__((always_inline)) inline float expf(float x)
{
return exp((double)x);
}