mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
* C3_MATH feature This feature allows the usage of noclib math files even when libc is in use. If a nolibc symbol exists, it will be used in place of libc, otherwise it will default to libc. * Added MIT License notices to atan.c3
9 lines
180 B
Plaintext
9 lines
180 B
Plaintext
module std::math::nolibc @if(env::NO_LIBC || $feature(C3_MATH));
|
|
|
|
fn double sincos_broken(double x) @extern("sincos") @weak @nostrip
|
|
{
|
|
unreachable("'sinccos' not supported");
|
|
}
|
|
|
|
|