port to tahoe by Nir peleg of CCI
[unix-history] / usr / src / usr.bin / pascal / libpc / SEED.c
CommitLineData
14a8b446
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
492cc5d3 3static char sccsid[] = "@(#)SEED.c 1.5 %G%";
fce84c6e 4
ef5ad5b1 5#include "h00vars.h"
14a8b446 6
492cc5d3 7long
14a8b446 8SEED(value)
ef5ad5b1 9 long value;
14a8b446 10{
ef5ad5b1 11 long tmp;
14a8b446 12
ef5ad5b1
KM
13 tmp = _seed;
14 _seed = value;
14a8b446
KM
15 return tmp;
16}