From: Hallvard B Furuseth Date: Mon, 14 Apr 1997 17:58:38 +0000 (+0200) Subject: Fix comments in seed() X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=43c928080ab3849e95bac569d60d022dc2b624ad;p=p5sagit%2Fp5-mst-13.2.git Fix comments in seed() private-msgid: 199704141758.TAA06895@bombur2.uio.no --- diff --git a/pp.c b/pp.c index 357f91e..4effd28 100644 --- a/pp.c +++ b/pp.c @@ -1392,9 +1392,10 @@ seed() U32 u; #ifdef VMS # include + /* when[] = (low 32 bits, high 32 bits) of time since epoch + * in 100-ns units, typically incremented ever 10 ms. */ unsigned int when[2]; _ckvmssts(sys$gettim(when)); - /* Please tell us: Which value is seconds and what is the other here? */ u = (U32)SEED_C1 * when[0] + (U32)SEED_C2 * when[1]; #else # ifdef HAS_GETTIMEOFDAY