mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
184 B
C
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;
|