[BACK]Return to return.c CVS log [TXT][DIR] Up to [local] / sys / arch / mvme68k / stand / libbug

Annotation of sys/arch/mvme68k/stand/libbug/return.c, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: return.c,v 1.2 1996/05/16 02:25:41 chuck Exp $ */
        !             2:
        !             3: /*
        !             4:  * bug routines -- assumes that the necessary sections of memory
        !             5:  * are preserved.
        !             6:  */
        !             7: #include <sys/types.h>
        !             8: #include <machine/prom.h>
        !             9:
        !            10: #include "stand.h"
        !            11: #include "libbug.h"
        !            12:
        !            13: /* BUG - return to bug routine */
        !            14: __dead void
        !            15: _rtt()
        !            16: {
        !            17:        MVMEPROM_CALL(MVMEPROM_EXIT);
        !            18:        printf("_rtt: exit failed.  spinning...");
        !            19:        while (1) ;
        !            20:        /*NOTREACHED*/
        !            21: }

CVSweb