Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / sun68k / stand / libsa / panic.c
blobeacbcad353338a87e5a485ed1ec84598aa2dce0e
1 /* $NetBSD: panic.c,v 1.2 2002/05/15 04:07:43 lukem Exp $ */
4 #include <machine/stdarg.h>
5 #include <stand.h>
6 #include "libsa.h"
8 __dead void
9 panic(const char *fmt, ...)
11 va_list ap;
13 va_start(ap, fmt);
14 vprintf(fmt, ap);
15 putchar('\n');
16 va_end(ap);
17 breakpoint();
18 exit(0);