xref: /original-bsd/usr.bin/pascal/libpc/SEED.c (revision 7e7b101a)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 static char sccsid[] = "@(#)SEED.c 1.5 03/07/81";
4 
5 #include "h00vars.h"
6 
7 long
8 SEED(value)
9 	long value;
10 {
11 	long tmp;
12 
13 	tmp = _seed;
14 	_seed = value;
15 	return tmp;
16 }
17