| ... | @@ -2269,7 +2269,10 @@ pub const SC = switch (native_os) { | ... | @@ -2269,7 +2269,10 @@ pub const SC = switch (native_os) { |
| 2269 | else => void, | 2269 | else => void, |
| 2270 | }; | 2270 | }; |
| 2271 | | 2271 | |
| 2272 | pub const _SC = switch (native_os) { | 2272 | pub const _SC = if (builtin.abi.isAndroid()) enum(c_int) { |
| | 2273 | PAGESIZE = 39, |
| | 2274 | NPROCESSORS_ONLN = 97, |
| | 2275 | } else switch (native_os) { |
| 2273 | .driverkit, .ios, .macos, .tvos, .visionos, .watchos => enum(c_int) { | 2276 | .driverkit, .ios, .macos, .tvos, .visionos, .watchos => enum(c_int) { |
| 2274 | PAGESIZE = 29, | 2277 | PAGESIZE = 29, |
| 2275 | }, | 2278 | }, |