diff options
| author | injuly <50487716+srijan-paul@users.noreply.github.com> | 2025-01-27 00:26:14 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-26 19:56:14 +0100 |
| commit | d714cf33405486d9aa707e9aee8f103a011d06e9 (patch) | |
| tree | 2f2f517cd44f07c13a17421508db4e4b68357132 /lib/std/c | |
| parent | 6255ee3d2f65c368bbd0a316d60044af3c5d4607 (diff) | |
| download | zig-d714cf33405486d9aa707e9aee8f103a011d06e9.tar.gz zig-d714cf33405486d9aa707e9aee8f103a011d06e9.zip | |
std.c.darwin: Fix EXC.MASK compile error (#21273)
Diffstat (limited to 'lib/std/c')
| -rw-r--r-- | lib/std/c/darwin.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/c/darwin.zig b/lib/std/c/darwin.zig index 89aa792566..4ae86b254e 100644 --- a/lib/std/c/darwin.zig +++ b/lib/std/c/darwin.zig @@ -75,6 +75,8 @@ pub const EXC = enum(exception_type_t) { CORPSE_NOTIFY: bool = false, _14: u18 = 0, + _padding: u19 = 0, + pub const MACHINE: MASK = @bitCast(@as(u32, 0)); pub const ALL: MASK = .{ |
