initial commit

This commit is contained in:
Jorge Aparicio
2018-07-12 00:44:28 -05:00
commit 8e271704ef
14 changed files with 1069 additions and 0 deletions

View 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;