msvcrt: Provide exp2 in importlib.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
55f803c81b
commit
bdf905d661
|
@ -37,3 +37,7 @@ float sqrtf(float x) { return sqrt(x); }
|
|||
float floorf(float x) { return floor(x); }
|
||||
float ceilf(float x) { return ceil(x); }
|
||||
#endif
|
||||
|
||||
#if _MSVCR_VER < 120
|
||||
double exp2(double x) { return pow(2.0, x); }
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue