ack/lang/basic/lib/hlt.c
David Given d5f0107746 Build the Basic run-time library (after some modernisation).
--HG--
branch : dtrg-buildsystem
2013-05-14 16:11:29 +01:00

13 lines
81 B
C

#include <stdlib.h>
_hlt(nr)
int nr;
{
exit(nr);
}
_goto_err()
{
error(3);
}