amiga-ixemul/static/truncf.c

6 lines
83 B
C

__attribute__((always_inline)) inline float truncf(float x)
{
return floor(x);
}