| ... | @@ -736,9 +736,9 @@ pub const winsize = extern struct { | ... | @@ -736,9 +736,9 @@ pub const winsize = extern struct { |
| 736 | | 736 | |
| 737 | const NSIG = 32; | 737 | const NSIG = 32; |
| 738 | | 738 | |
| 739 | pub const SIG_ERR = @intToPtr(fn (i32) callconv(.C) void, maxInt(usize)); | 739 | pub const SIG_ERR = @intToPtr(?Sigaction.sigaction_fn, maxInt(usize)); |
| 740 | pub const SIG_DFL = @intToPtr(fn (i32) callconv(.C) void, 0); | 740 | pub const SIG_DFL = @intToPtr(?Sigaction.sigaction_fn, 0); |
| 741 | pub const SIG_IGN = @intToPtr(fn (i32) callconv(.C) void, 1); | 741 | pub const SIG_IGN = @intToPtr(?Sigaction.sigaction_fn, 1); |
| 742 | | 742 | |
| 743 | /// Renamed from `sigaction` to `Sigaction` to avoid conflict with the syscall. | 743 | /// Renamed from `sigaction` to `Sigaction` to avoid conflict with the syscall. |
| 744 | pub const Sigaction = extern struct { | 744 | pub const Sigaction = extern struct { |