Files
c3c/lib/std/math/math_nolibc/trig.c3

12 lines
190 B
C

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