Commit df5b1f83 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

msvcrt: Provide exp2f in importlib.

parent 84150299
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment