msvcrt: Provide exp2f in importlib.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2020-01-24 11:08:15 +01:00 committed by Alexandre Julliard
parent 841502993f
commit df5b1f8350
1 changed files with 1 additions and 0 deletions

View File

@ -40,4 +40,5 @@ float ceilf(float x) { return ceil(x); }
#if _MSVCR_VER < 120
double exp2(double x) { return pow(2.0, x); }
float exp2f(float x) { return powf(2.0f, x); }
#endif