suppress warning about set_errno being unused on DragonFly
Other targets allow this function to be unused, DragonFly just misses out due to providing a specialization.
This commit is contained in:
parent
e5038e2099
commit
0fdb109795
1 changed files with 1 additions and 0 deletions
|
@ -97,6 +97,7 @@ pub fn errno() -> i32 {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(target_os = "dragonfly")]
|
#[cfg(target_os = "dragonfly")]
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn set_errno(e: i32) {
|
pub fn set_errno(e: i32) {
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#[thread_local]
|
#[thread_local]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue