std.c: fix host_basic_info definition for darwin.
follow-up on ff59c45.
ref: https://github.com/ziglang/zig/blob/a5e15eced0e9cb00871966ede74eed9b3a07183c/lib/libc/include/any-macos-any/mach/host_info.h#L116
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/c/darwin.zig+1-1
| ... | ... | @@ -4073,7 +4073,7 @@ pub const HOST = struct { |
| 4073 | 4073 | pub const EXTMOD_INFO64_COUNT = HostCount(vm_extmod_statistics_data_t); |
| 4074 | 4074 | }; |
| 4075 | 4075 | |
| 4076 | | pub const host_basic_info = packed struct(u32) { |
| 4076 | pub const host_basic_info = extern struct { |
| 4077 | 4077 | max_cpus: integer_t, |
| 4078 | 4078 | avail_cpus: integer_t, |
| 4079 | 4079 | memory_size: natural_t, |