We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0a4fb0 + 61ff741 commit dd2d2dbCopy full SHA for dd2d2db
src/unix/linux_like/linux/musl/mod.rs
@@ -1,5 +1,11 @@
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 this change in the future release. \
7
+ See #1848 for more info."
8
+)]
9
pub type time_t = c_long;
10
pub type suseconds_t = c_long;
11
pub type ino_t = u64;
0 commit comments