NetBSD/sys/arch/sun3/stand/libsa/panic.c
gwr 4541c9f5c6 Work-around sensitivity to DVMA address in PROM revision 2.6 so the
netboot program will work on Sun3/50 machines.  Also fixes PR 1928.
1996-01-29 23:41:03 +00:00

18 lines
205 B
C

#include <stdarg.h>
#include "stand.h"
extern __dead void abort();
__dead void
panic(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vprintf(fmt, ap);
printf("\n");
va_end(ap);
abort();
}