1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

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);
}
}