msvcrt: Provide exp2 in importlib.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Jacek Caban 2019-12-06 14:48:11 +01:00 committed by Alexandre Julliard
parent 55f803c81b
commit bdf905d661
1 changed files with 4 additions and 0 deletions

View File

@ -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