| ... | @@ -9499,8 +9499,8 @@ pub const LC = enum(c_int) { | ... | @@ -9499,8 +9499,8 @@ pub const LC = enum(c_int) { |
| 9499 | | 9499 | |
| 9500 | pub extern "c" fn setlocale(category: LC, locale: ?[*:0]const u8) ?[*:0]const u8; | 9500 | pub extern "c" fn setlocale(category: LC, locale: ?[*:0]const u8) ?[*:0]const u8; |
| 9501 | | 9501 | |
| 9502 | pub const getcontext = if (builtin.target.isAndroid()) | 9502 | pub const getcontext = if (builtin.target.isAndroid() or builtin.target.os.tag == .openbsd) |
| 9503 | {} // android bionic libc does not implement getcontext | 9503 | {} // android bionic and openbsd libc does not implement getcontext |
| 9504 | else if (native_os == .linux and builtin.target.isMusl()) | 9504 | else if (native_os == .linux and builtin.target.isMusl()) |
| 9505 | linux.getcontext | 9505 | linux.getcontext |
| 9506 | else | 9506 | else |