From: jsg Date: Thu, 13 May 2021 08:44:18 +0000 (+0000) Subject: change sig_atomic_t from long to int matching all the other archs X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=5f7a83954aa4e5a3fbbdd05dd90394ef76d04bb9;p=openbsd change sig_atomic_t from long to int matching all the other archs ok kettenis@ --- diff --git a/sys/arch/riscv64/include/signal.h b/sys/arch/riscv64/include/signal.h index cff8d6a5f62..952354b08e0 100644 --- a/sys/arch/riscv64/include/signal.h +++ b/sys/arch/riscv64/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.2 2021/05/12 01:20:52 jsg Exp $ */ +/* $OpenBSD: signal.h,v 1.3 2021/05/13 08:44:18 jsg Exp $ */ /*- * Copyright (c) 1986, 1989, 1991, 1993 @@ -39,7 +39,7 @@ #include -typedef long sig_atomic_t; +typedef int sig_atomic_t; #if __BSD_VISIBLE || __XPG_VISIBLE >= 420