mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
270 B
Plaintext
12 lines
270 B
Plaintext
module std::math::nolibc @if(env::NO_LIBC);
|
|
|
|
fn float powf_broken(float x, float f) @extern("powf") @weak @nostrip
|
|
{
|
|
unreachable("'powf' not supported");
|
|
}
|
|
|
|
fn double pow_broken(double x, double y) @extern("pow") @weak @nostrip
|
|
{
|
|
unreachable("'pow' not supported");
|
|
}
|