mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
b8ae966634
Addendum to 199adee
.
13 lines
205 B
C
13 lines
205 B
C
|
|
#include <math.h>
|
|
|
|
_Check_return_
|
|
double
|
|
__cdecl
|
|
exp2(
|
|
_In_ double x)
|
|
{
|
|
/* This below avoids clang to optimize our pow call to exp2 */
|
|
static const double TWO = 2.0;
|
|
return pow(TWO, x);
|
|
}
|