mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-15 10:01:15 +00:00
7 lines
109 B
C
7 lines
109 B
C
|
|
__attribute__((always_inline)) inline double log2(double x)
|
|
{
|
|
return (log(x) * 1.44269504088896340736);
|
|
}
|
|
|