1 /* Copyright (c) 1979 Regents of the University of California */ 2 3 static char sccsid[] = "@(#)RSNG4.c 1.2 03/07/81"; 4 5 #include "h01errs.h" 6 7 long 8 RSNG4(value, upper) 9 10 long value; 11 long upper; 12 { 13 if (value < 0 || value > upper) { 14 ERROR(ERANGE, value); 15 return; 16 } 17 return value; 18 } 19