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/alpha | |
parent | 249192daa01d83a62e2f5c55256d9c88a567cfc7 (diff) |
boot(): Unify declarations
OK deraadt@
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/machdep.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c index 2389032289a..b198b99d780 100644 --- a/sys/arch/alpha/alpha/machdep.c +++ b/sys/arch/alpha/alpha/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.156 2014/05/31 15:49:28 mpi Exp $ */ +/* $OpenBSD: machdep.c,v 1.157 2014/07/10 12:13:48 uebayasi Exp $ */ /* $NetBSD: machdep.c,v 1.210 2000/06/01 17:12:38 thorpej Exp $ */ /*- @@ -974,9 +974,8 @@ skipMHz: int waittime = -1; struct pcb dumppcb; -void -boot(howto) - int howto; +__dead void +boot(int howto) { struct device *mainbus; #if defined(MULTIPROCESSOR) |