about summary refs log tree commit diff
path: root/library/std/src/sys/mod.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-01-22 22:12:08 +0100
committerGitHub <noreply@github.com>2024-01-22 22:12:08 +0100
commit42e1db52acc02cb62f48cd20f3665d6a2ff0f7f4 (patch)
tree4d988f7a50419d03e9ce04e3d8b4b19365eddc13 /library/std/src/sys/mod.rs
parent042cc7269cc756abccc89820755c2c05a33b2b6b (diff)
parentf88e64343e4f9c9ec40c5e7c2c0bcd27ff6052bd (diff)
downloadrust-42e1db52acc02cb62f48cd20f3665d6a2ff0f7f4.tar.gz
rust-42e1db52acc02cb62f48cd20f3665d6a2ff0f7f4.zip
Rollup merge of #120109 - joboet:move_pal_cmath, r=ChrisDenton
Move cmath into `sys`

Part of #117276.

r? ``@ChrisDenton``
Diffstat (limited to 'library/std/src/sys/mod.rs')
-rw-r--r--library/std/src/sys/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/std/src/sys/mod.rs b/library/std/src/sys/mod.rs
index d95c0d8d062..e03e98b18d2 100644
--- a/library/std/src/sys/mod.rs
+++ b/library/std/src/sys/mod.rs
@@ -3,9 +3,11 @@
 /// descriptors.
 mod pal;
 
-pub mod os_str;
 mod personality;
 
+pub mod cmath;
+pub mod os_str;
+
 // FIXME(117276): remove this, move feature implementations into individual
 //                submodules.
 pub use pal::*;