hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit b4dc0da122b2370fb78c809a61648163e007584d
parent 7842e453e4c965437ae9904db5de6db08206b66b
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sat,  7 Sep 2024 16:40:50 -0400

rt: fix name of field in sigval

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mrt/+freebsd/types.ha | 2+-
Mrt/+linux/types.ha | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/rt/+freebsd/types.ha b/rt/+freebsd/types.ha @@ -53,7 +53,7 @@ export def SIG_UNBLOCK: int = 2; export def SIG_SETMASK: int = 3; export type sigval = union { - sival_t: int, + sival_int: int, sival_ptr: *opaque, }; diff --git a/rt/+linux/types.ha b/rt/+linux/types.ha @@ -405,7 +405,7 @@ export def SIG_SETMASK: int = 2; def SI_MAX_SIZE: size = 128; export type sigval = union { - sival_t: int, + sival_int: int, sival_ptr: *opaque, };