1*40865Sbostic /*- 2*40865Sbostic * Copyright (c) 1979 The Regents of the University of California. 3*40865Sbostic * All rights reserved. 4*40865Sbostic * 5*40865Sbostic * %sccs.include.redist.c% 6*40865Sbostic */ 71661Smckusick 8*40865Sbostic #ifndef lint 9*40865Sbostic static char sccsid[] = "@(#)LINO.c 1.4 (Berkeley) 04/09/90"; 10*40865Sbostic #endif /* not lint */ 111661Smckusick 121661Smckusick #include "h00vars.h" 131661Smckusick 149136Smckusick char ELINO[] = "Statement count limit of %D exceeded\n"; 159136Smckusick 161661Smckusick LINO() 171661Smckusick { 181661Smckusick if (++_stcnt >= _stlim) { 199136Smckusick ERROR(ELINO, _stcnt); 201661Smckusick return; 211661Smckusick } 221661Smckusick } 23