/* $OpenBSD: return.c,v 1.4 2006/05/16 22:51:30 miod Exp $ */ /* * bug routines -- assumes that the necessary sections of memory * are preserved. */ #include #include #include "stand.h" #include "prom.h" /* BUG - return to bug routine */ __dead void _rtt() { MVMEPROM_CALL(MVMEPROM_EXIT); printf("_rtt: exit failed. spinning..."); while (1) ; /*NOTREACHED*/ }