repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
sys
/
arch
/
sun68k
/
stand
/
bootxx
/
panic_putstr.c
blob
61e11260f59c7b75c0f197903775e1f15b8fa4c9
1
/* $NetBSD: panic_putstr.c,v 1.1 2002/05/15 04:07:42 lukem Exp $ */
2
3
4
#include <machine/stdarg.h>
5
#include <stand.h>
6
#include
"libsa.h"
7
8
__dead
void
9
panic
(
const char
*
fmt
, ...)
10
{
11
12
putstr
(
"panic: "
);
13
putstr
(
fmt
);
14
putchar
(
'
\n
'
);
15
16
breakpoint
();
17
exit
(
0
);
18
}