Files
c3c/lib/std/math/math_nolibc/trig.c3
2023-02-02 21:53:37 +01:00

12 lines
184 B
C

module std::math::nolibc::trig;
$if (!env::COMPILER_LIBC_AVAILABLE):
fn double sincos_broken(double x) @extern("sincos") @weak
{
unreachable("'sinccos' not supported");
}
$endif;