about summary refs log tree commit diff
path: root/src/libstd/sys/redox/cmath.rs
AgeCommit message (Collapse)AuthorLines
2019-08-06redox: convert to target_family unixJeremy Soller-33/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2017-11-08std: Move the `cmath` module into the `sys` moduleAlex Crichton-0/+43
This commit moves the `f32::cmath` and `f64::cmath` modules into the `sys` module. Note that these are not publicly exported modules, simply implementation details. These modules are already platform-specific with shims on MSVC and this is mostly just a reflection of that reality. This should also help cut down on `#[cfg]` traffic if platforms are brought on which don't directly support these functions.