Files
c3c/lib/std/math/math_nolibc/trig.c3
Christoffer Lerno a0a5c940f1 Add --strip-unused.
2023-02-16 22:11:42 +01:00

12 lines
193 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;