mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-12 14:20:13 +00:00
(rand_r): Really use 31 bits, the result was shifted a bit too much.
This commit is contained in:
parent
4994bfb72e
commit
44956139ba
@ -1,5 +1,5 @@
|
||||
/* Reentrant random function frm POSIX.1c.
|
||||
Copyright (C) 1996 Free Software Foundation, Inc.
|
||||
Copyright (C) 1996, 1999 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
|
||||
|
||||
@ -35,7 +35,7 @@ rand_r (unsigned int *seed)
|
||||
|
||||
next *= 1103515245;
|
||||
next += 12345;
|
||||
result <<= 11;
|
||||
result <<= 10;
|
||||
result ^= (unsigned int) (next / 65536) % 1024;
|
||||
|
||||
next *= 1103515245;
|
||||
|
Loading…
Reference in New Issue
Block a user