mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 14:22:22 +00:00
7 lines
111 B
C
7 lines
111 B
C
|
|
__attribute__((always_inline)) inline float exp2f(float x)
|
|
{
|
|
return (exp((double)x) * 0.693147180559945);
|
|
}
|
|
|