Fix `deprecated` attribute for `__error`

This commit is contained in:
Yuki Okushi 2020-10-25 10:37:49 +09:00
parent ae193eaae0
commit d371bdcc1e
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
// DragonFlyBSD's __error function is declared with "static inline", so it must
// be implemented in the libc crate, as a pointer to a static thread_local.
f! {
#[deprecated(since = "0.2.77", "Use `__errno_location()` instead")]
#[deprecated(since = "0.2.77", note = "Use `__errno_location()` instead")]
pub fn __error() -> *mut ::c_int {
&mut errno
}