Fix a typo in libm::Libm::roundeven

This commit is contained in:
SSD
2026-01-02 22:30:25 +01:00
committed by GitHub
parent 1276564146
commit 0d366e098c
@@ -168,7 +168,7 @@ pub fn $func($($arg: $arg_typ),*) -> ($($ret_typ),*) {
(fn remquo(x: f64, y: f64) -> (f64, i32); => remquo);
(fn rint(x: f64) -> (f64); => rint);
(fn round(x: f64) -> (f64); => round);
(fn roundevem(x: f64) -> (f64); => roundeven);
(fn roundeven(x: f64) -> (f64); => roundeven);
(fn scalbn(x: f64, n: i32) -> (f64); => scalbn);
(fn sin(x: f64) -> (f64); => sin);
(fn sincos(x: f64) -> (f64, f64); => sincos);