mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 15:51:49 +00:00
[CRT] Add a generic C version of exp2(f) and use it for all architecture
This commit is contained in:
parent
a19ca409ae
commit
199adee3fe
4 changed files with 32 additions and 40 deletions
13
sdk/lib/crt/math/exp2f.c
Normal file
13
sdk/lib/crt/math/exp2f.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
_Check_return_
|
||||
float
|
||||
__cdecl
|
||||
exp2f(
|
||||
_In_ float x)
|
||||
{
|
||||
/* This below avoids clang to optimize our pow call to exp2 */
|
||||
static const TWO = 2.0f;
|
||||
return powf(TWO, x);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue