From ec4825ef8b65abaefa3f8ad313e099ab81733c0d Mon Sep 17 00:00:00 2001 From: mdw Date: Sat, 17 Jun 2000 11:29:03 +0000 Subject: [PATCH] Add the flags word to the generic generator. --- lcrand.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lcrand.c b/lcrand.c index 88e9591..05c3aae 100644 --- a/lcrand.c +++ b/lcrand.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: lcrand.c,v 1.2 1999/12/13 15:34:01 mdw Exp $ + * $Id: lcrand.c,v 1.3 2000/06/17 11:29:03 mdw Exp $ * * Simple linear congruential generator * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: lcrand.c,v $ + * Revision 1.3 2000/06/17 11:29:03 mdw + * Add the flags word to the generic generator. + * * Revision 1.2 1999/12/13 15:34:01 mdw * Add support for seeding from a generic pseudorandom source. * @@ -257,7 +260,7 @@ static uint32 grange(grand *r, uint32 l) static const grand_ops gops = { "lcrand", - LCRAND_P, + LCRAND_P, 0, gmisc, gdestroy, graw, gbyte, grand_word, grange, grand_fill }; -- 2.11.0