xref: /csrg-svn/usr.bin/pascal/libpc/LINO.c (revision 62092)
140865Sbostic /*-
2*62092Sbostic  * Copyright (c) 1979, 1993
3*62092Sbostic  *	The Regents of the University of California.  All rights reserved.
440865Sbostic  *
540865Sbostic  * %sccs.include.redist.c%
640865Sbostic  */
71661Smckusick 
840865Sbostic #ifndef lint
9*62092Sbostic static char sccsid[] = "@(#)LINO.c	8.1 (Berkeley) 06/06/93";
1040865Sbostic #endif /* not lint */
111661Smckusick 
121661Smckusick #include "h00vars.h"
131661Smckusick 
149136Smckusick char ELINO[] = "Statement count limit of %D exceeded\n";
159136Smckusick 
LINO()161661Smckusick LINO()
171661Smckusick {
181661Smckusick 	if (++_stcnt >= _stlim) {
199136Smckusick 		ERROR(ELINO, _stcnt);
201661Smckusick 		return;
211661Smckusick 	}
221661Smckusick }
23