mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 22:00:47 +00:00
7 lines
116 B
C
7 lines
116 B
C
|
|
__attribute__((always_inline)) inline float log2f(float x)
|
|
{
|
|
return (log((double)x) * 1.44269504088896340736);
|
|
}
|
|
|