Skip to content

Commit c7a860d

Browse files
committed
Auto merge of #3370 - NordSecurity:add_apple_tvos_support, r=JohnTitor
Fix apple tvos support This PR adds one missed conditional to support apple tvOS target, it complements #2958.
2 parents 4cdc32e + aab9d70 commit c7a860d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unix/bsd/apple/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6131,7 +6131,7 @@ cfg_if! {
61316131
}
61326132
}
61336133
cfg_if! {
6134-
if #[cfg(any(target_os = "macos", target_os = "ios"))] {
6134+
if #[cfg(any(target_os = "macos", target_os = "ios", target_os = "tvos"))] {
61356135
extern "C" {
61366136
pub fn memmem(
61376137
haystack: *const ::c_void,

0 commit comments

Comments
 (0)