/* $OpenBSD: return.c,v 1.2 1996/05/16 02:25:41 chuck Exp $ */ /* * bug routines -- assumes that the necessary sections of memory * are preserved. */ #include #include #include "stand.h" #include "libbug.h" /* BUG - return to bug routine */ __dead void _rtt() { MVMEPROM_CALL(MVMEPROM_EXIT); printf("_rtt: exit failed. spinning..."); while (1) ; /*NOTREACHED*/ }