We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aead99a commit 60da93fCopy full SHA for 60da93f
src/unix/linux_like/linux/musl/mod.rs
@@ -1,10 +1,13 @@
1
pub type pthread_t = *mut ::c_void;
2
pub type clock_t = c_long;
3
-#[deprecated(
4
- since = "0.2.80",
5
- note = "This type is changed to 64-bit in musl 1.2.0, \
6
- we'll follow that change in the future release. \
7
- See #1848 for more info."
+#[cfg_attr(
+ not(feature = "rustc-dep-of-std"),
+ deprecated(
+ since = "0.2.80",
+ note = "This type is changed to 64-bit in musl 1.2.0, \
8
+ we'll follow that change in the future release. \
9
+ See #1848 for more info."
10
+ )
11
)]
12
pub type time_t = c_long;
13
pub type suseconds_t = c_long;
0 commit comments