move the text of error messages from ERROR to the functions
[unix-history] / usr / src / usr.bin / pascal / libpc / LINO.c
CommitLineData
0b6435eb
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
86997b19 3static char sccsid[] = "@(#)LINO.c 1.2 %G%";
0b6435eb
KM
4
5#include "h00vars.h"
0b6435eb
KM
6
7LINO()
8{
9 if (++_stcnt >= _stlim) {
86997b19 10 ERROR("Statement count limit of %D exceeded\n", _stcnt);
0b6435eb
KM
11 return;
12 }
13}