diff options
author | 2001-04-12 10:35:01 +0000 | |
---|---|---|
committer | 2001-04-12 10:35:01 +0000 | |
commit | 7fa9c17c9e9a82d3916905a5c847e1a96d134601 (patch) | |
tree | 9d050e922de3b74c1a001b220ceca9e70e4892b4 | |
parent | Require full name in MAINTAINER; espie@ ok, pointed out by aaron@ (diff) | |
download | wireguard-openbsd-7fa9c17c9e9a82d3916905a5c847e1a96d134601.tar.xz wireguard-openbsd-7fa9c17c9e9a82d3916905a5c847e1a96d134601.zip |
Remove a bogus __attribute__ ((unused)) from _splraise.
-rw-r--r-- | sys/arch/alpha/include/intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/intr.h b/sys/arch/alpha/include/intr.h index a737bdb18af..c5cdb13c368 100644 --- a/sys/arch/alpha/include/intr.h +++ b/sys/arch/alpha/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.8 2000/11/08 21:27:19 ericj Exp $ */ +/* $OpenBSD: intr.h,v 1.9 2001/04/12 10:35:01 art Exp $ */ /* $NetBSD: intr.h,v 1.25 2000/05/23 05:12:56 thorpej Exp $ */ /* @@ -57,7 +57,7 @@ #define spllowersoftclock() alpha_pal_swpipl(ALPHA_PSL_IPL_SOFT) /* IPL-raising functions/macros */ -static __inline int _splraise __P((int)) __attribute__ ((unused)); +static __inline int _splraise __P((int)); static __inline int _splraise(s) int s; |