Rollup merge of #91474 - rtzoeller:dfly_set_errno, r=cuviper
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 fixes a build error for DragonFly.
This commit is contained in:
commit
aa6f2d9a79
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