date and time created 80/10/30 00:36:24 by mckusick
[unix-history] / usr / src / usr.bin / pascal / libpc / STLIM.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)STLIM.c 1.1 %G%";
#include "h00vars.h"
#include "h01errs.h"
STLIM(limit)
long limit;
{
if (_stcnt >= limit) {
ERROR(ESTLIM, _stcnt);
return;
}
_stlim = limit;
}