mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 15:52:52 +00:00
6 lines
89 B
C
6 lines
89 B
C
__attribute__((always_inline)) inline float expf(float x)
|
|
{
|
|
return exp((double)x);
|
|
}
|
|
|