Skip to content
Snippets Groups Projects
Commit e471884d authored by Yuki Okushi's avatar Yuki Okushi
Browse files

Add a deprecation note to `time_t` on musl

parent 7b0b5f8d
No related branches found
No related tags found
No related merge requests found
pub type pthread_t = *mut ::c_void; pub type pthread_t = *mut ::c_void;
pub type clock_t = c_long; pub type clock_t = c_long;
#[deprecated(
since = "0.2.80",
note = "This type is changed to 64-bit in musl 1.2.0, \
we'll follow that change in the future release. \
See #1848 for more info."
)]
pub type time_t = c_long; pub type time_t = c_long;
pub type suseconds_t = c_long; pub type suseconds_t = c_long;
pub type ino_t = u64; pub type ino_t = u64;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment