Subversion Repositories shark

Rev

Rev 629 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
629 giacomo 1
#include <string.h>
2
#include <kernel/kern.h>
3
 
4
void panic_stub(void)
5
{
6
        cprintf("Panic: stub called!!!\n");
7
 
927 pj 8
        exit(200);                      /* Just a number... */
629 giacomo 9
}
10