LibM: Stub out ldexp().

This commit is contained in:
Andreas Kling
2019-03-27 01:41:55 +01:00
parent d1e55fb4d9
commit 2a858719be

View File

@@ -20,4 +20,10 @@ double pow(double x, double y)
assert(false);
}
double ldexp(double, int exp)
{
(void)exp;
assert(false);
}
}