ack/util/cpp/LLmessage.c

20 lines
320 B
C
Raw Normal View History

1987-01-06 15:16:53 +00:00
/* PARSER ERROR ADMINISTRATION */
#include "LLlex.h"
#include "Lpars.h"
extern char *symbol2str();
LLmessage(tk) {
err_occurred = 1;
if (tk < 0)
error("garbage at end of line");
else if (tk) {
error("%s missing", symbol2str(tk));
skipline();
DOT = EOF;
}
else
error("%s deleted", symbol2str(DOT));
}