12 lines
91 B
C
12 lines
91 B
C
#include <stdlib.h>
|
|
|
|
void _hlt(int nr)
|
|
{
|
|
exit(nr);
|
|
}
|
|
|
|
void _goto_err(void)
|
|
{
|
|
error(3);
|
|
}
|