mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 15:02:23 +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/exp2.c
Normal file
13
sdk/lib/crt/math/exp2.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
_Check_return_
|
||||
double
|
||||
__cdecl
|
||||
exp2(
|
||||
_In_ double x)
|
||||
{
|
||||
/* This below avoids clang to optimize our pow call to exp2 */
|
||||
static const TWO = 2.0;
|
||||
return pow(TWO, x);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue