ack/lang/basic/lib/stop.c
2018-06-24 00:35:51 +02:00

13 lines
149 B
C

#include <stdlib.h>
#include <stdio.h>
#include "lib.h"
_stop()
{
extern int _erlsym;
_setline();
printf("Break in %d\n", _erlsym);
exit(0);
}