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

msvcrt: Provide exp2 in importlib.

parent 55f803c8
......@@ -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
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