authorgravatar for sunb@qmrz.net孙冰 <sunb@qmrz.net> 2025-03-26 20:00:05+08:00
committergravatar for sunb@qmrz.net孙冰 <sunb@qmrz.net> 2025-03-26 20:00:05+08:00
log0118912e2d844d669ed67352064235854102fdee
tree6011d6679d6803fad917bc966c137cb8287a0cd1
parentd7e944a628c57e2c980b7c9b1aeb84a24930104c
signaturelock-open Commit is signed but in an unrecognized format.

std.posix: update LFS64 interfaces for android bionic C


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/posix.zig+1-1
...@@ -7479,7 +7479,7 @@ pub fn ioctl_SIOCGIFINDEX(fd: fd_t, ifr: *ifreq) IoCtl_SIOCGIFINDEX_Error!void {...@@ -7479,7 +7479,7 @@ pub fn ioctl_SIOCGIFINDEX(fd: fd_t, ifr: *ifreq) IoCtl_SIOCGIFINDEX_Error!void {
7479 }7479 }
7480}7480}
74817481
7482const lfs64_abi = native_os == .linux and builtin.link_libc and builtin.abi.isGnu();7482const lfs64_abi = native_os == .linux and builtin.link_libc and (builtin.abi.isGnu() or builtin.abi.isAndroid());
74837483
7484/// Whether or not `error.Unexpected` will print its value and a stack trace.7484/// Whether or not `error.Unexpected` will print its value and a stack trace.
7485///7485///