ack/lang/basic/lib/stop.c

12 lines
132 B
C
Raw Normal View History

#include <stdlib.h>
#include <stdio.h>
1984-11-29 14:22:02 +00:00
_stop()
{
extern int _erlsym;
_setline();
printf("Break in %d\n", _erlsym);
exit(0);
}