1 /* Copyright (c) 1979 Regents of the University of California */ 2 3 static char sccsid[] = "@(#)SEED.c 1.2 11/20/80"; 4 5 #include <math.h> 6 #include <math.h> 7 8 SEED(value) 9 10 long value; 11 { 12 static long seed; 13 long tmp; 14 15 srand(value); 16 tmp = seed; 17 seed = value; 18 return tmp; 19 } 20