LibM: Stub out ldexp().

This commit is contained in:
Andreas Kling 2019-03-27 01:41:55 +01:00
commit 2a858719be
Notes: sideshowbarker 2024-07-19 14:56:02 +09:00

View file

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