clear EOF and EOLN after performing a seek
[unix-history] / usr / src / usr.bin / pascal / libpc / RSNG4.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)RSNG4.c 1.3 %G%";
long
RSNG4(value, upper)
long value;
long upper;
{
if (value < 0 || value > upper) {
ERROR("Value of %D is out of range\n", value);
return;
}
return value;
}