diff options
author | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2014-07-10 12:13:50 +0000 |
---|---|---|
committer | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2014-07-10 12:13:50 +0000 |
commit | da0925a2447e3b1ffedb2aedd8eb0f96659af9df (patch) | |
tree | ecb6bfb3b853087b8e684ec46e701d3aa7157d78 /sys/arch/vax | |
parent | 249192daa01d83a62e2f5c55256d9c88a567cfc7 (diff) |
boot(): Unify declarations
OK deraadt@
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index 3ec08818fe6..256205ad1d0 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.136 2014/05/31 15:49:28 mpi Exp $ */ +/* $OpenBSD: machdep.c,v 1.137 2014/07/10 12:13:49 uebayasi Exp $ */ /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */ /* @@ -508,9 +508,8 @@ sendsig(catcher, sig, mask, code, type, val) int waittime = -1; static volatile int showto; /* Must be volatile to survive MM on -> MM off */ -void -boot(howto) - register int howto; +__dead void +boot(int howto) { struct device *mainbus; |