initial commit
This commit is contained in:
12
library/compiler-builtins/libm/src/lib.rs
Normal file
12
library/compiler-builtins/libm/src/lib.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
#![deny(warnings)]
|
||||
#![no_std]
|
||||
|
||||
mod fabsf;
|
||||
mod powf;
|
||||
mod scalbnf;
|
||||
mod sqrtf;
|
||||
|
||||
pub use fabsf::fabsf;
|
||||
pub use powf::powf;
|
||||
pub use scalbnf::scalbnf;
|
||||
pub use sqrtf::sqrtf;
|
||||
Reference in New Issue
Block a user