1 /* Copyright (c) 1979 Regents of the University of California */ 2 3 static char sccsid[] = "@(#)SEED.c 1.4 01/16/81"; 4 5 #include "h00vars.h" 6 7 SEED(value) 8 long value; 9 { 10 long tmp; 11 12 tmp = _seed; 13 _seed = value; 14 return tmp; 15 } 16