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/sparc64 | |
parent | 249192daa01d83a62e2f5c55256d9c88a567cfc7 (diff) |
boot(): Unify declarations
OK deraadt@
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/sparc64/machdep.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c index f3223097cbd..38fc758eef5 100644 --- a/sys/arch/sparc64/sparc64/machdep.c +++ b/sys/arch/sparc64/sparc64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.157 2014/05/31 15:49:28 mpi Exp $ */ +/* $OpenBSD: machdep.c,v 1.158 2014/07/10 12:13:49 uebayasi Exp $ */ /* $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */ /*- @@ -604,9 +604,8 @@ signotify(struct proc *p) int waittime = -1; struct pcb dumppcb; -void -boot(howto) - int howto; +__dead void +boot(int howto) { int i; static char str[128]; |