Files
c3c/lib/std/math/math_nolibc/pow.c3
2023-01-28 00:37:46 +01:00

15 lines
282 B
C

module std::math::nolibc;
$if (!env::COMPILER_LIBC_AVAILABLE):
fn float powf_broken(float x, float f) @extname("powf") @weak
{
unreachable("'powf' not supported");
}
fn double pow_broken(double x, double y) @extname("pow") @weak
{
unreachable("'pow' not supported");
}
$endif;