about summary refs log tree commit diff
path: root/library/std/src/sys/wasm/mod.rs
diff options
context:
space:
mode:
authorChristiaan Dirkx <christiaan@dirkx.email>2021-04-24 17:50:40 +0200
committerChristiaan Dirkx <christiaan@dirkx.email>2021-04-28 14:25:04 +0200
commit26fb1e373bd313b70d1f95cd16259035e5a7f8c8 (patch)
tree7925b132d9f0cbb4e0d2a8ddc97c5adcfb3edb37 /library/std/src/sys/wasm/mod.rs
parente11a9fa52a3f372dadd6db3d3f2ed7dc2621dcc4 (diff)
downloadrust-26fb1e373bd313b70d1f95cd16259035e5a7f8c8.tar.gz
rust-26fb1e373bd313b70d1f95cd16259035e5a7f8c8.zip
Reuse `unix::cmath`
Diffstat (limited to 'library/std/src/sys/wasm/mod.rs')
-rw-r--r--library/std/src/sys/wasm/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/wasm/mod.rs b/library/std/src/sys/wasm/mod.rs
index 82683c0f624..bb7ef4f1381 100644
--- a/library/std/src/sys/wasm/mod.rs
+++ b/library/std/src/sys/wasm/mod.rs
@@ -18,7 +18,7 @@
 
 pub mod alloc;
 pub mod args;
-#[path = "../unsupported/cmath.rs"]
+#[path = "../unix/cmath.rs"]
 pub mod cmath;
 pub mod env;
 #[path = "../unsupported/fs.rs"]