From fffa21663da84250469dec2da26062f66a8c171a Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 23 May 2023 22:24:13 -0700 Subject: libs/sig: mechanical rename sig_t->sig_sig_t sig_t collides with some signals-related system header on macos. Just prefix it under the sig namespace.. leaving sig_ops alone for now, but maybe they'll become sig_sig_ops in the future too. Note nothing in master actually uses libs/sig currently, but I have an experimental branch with a dusty module using it. --- src/libs/sig/ops_round.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/sig/ops_round.c') diff --git a/src/libs/sig/ops_round.c b/src/libs/sig/ops_round.c index ddf8d66..6fbbb19 100644 --- a/src/libs/sig/ops_round.c +++ b/src/libs/sig/ops_round.c @@ -5,7 +5,7 @@ typedef struct ops_round_ctxt_t { - sig_t *x; + sig_sig_t *x; } ops_round_ctxt_t; @@ -21,7 +21,7 @@ static void ops_round_init(void *context, va_list ap) assert(ctxt); - ctxt->x = va_arg(ap, sig_t *); + ctxt->x = va_arg(ap, sig_sig_t *); } -- cgit v1.2.3