ack/lang/basic/lib/hlt.c

12 lines
91 B
C
Raw Normal View History

#include <stdlib.h>
1984-11-29 14:22:02 +00:00
2016-12-12 20:15:25 +00:00
void _hlt(int nr)
1984-11-29 14:22:02 +00:00
{
exit(nr);
}
1988-07-01 17:30:06 +00:00
2016-12-12 20:15:25 +00:00
void _goto_err(void)
1988-07-01 17:30:06 +00:00
{
error(3);
}