mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 20:42:33 +00:00
6 lines
83 B
C
6 lines
83 B
C
__attribute__((always_inline)) inline float truncf(float x)
|
|
{
|
|
return floor(x);
|
|
}
|
|
|