mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00:00
LibM: Stub out ldexp().
This commit is contained in:
parent
d1e55fb4d9
commit
2a858719be
1 changed files with 6 additions and 0 deletions
|
@ -20,4 +20,10 @@ double pow(double x, double y)
|
||||||
assert(false);
|
assert(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double ldexp(double, int exp)
|
||||||
|
{
|
||||||
|
(void)exp;
|
||||||
|
assert(false);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue