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
@ -97,6 +97,7 @@ pub fn errno() -> i32 {
|
||||
}
|
||||
|
||||
#[cfg(target_os = "dragonfly")]
|
||||
#[allow(dead_code)]
|
||||
pub fn set_errno(e: i32) {
|
||||
extern "C" {
|
||||
#[thread_local]
|
||||
|
Loading…
x
Reference in New Issue
Block a user