mirror of git://git.musl-libc.org/musl
prng: make rand_r have 2^32 period instead of 2^31
this is a minor fix to increase the period of the obsolete rand_r a bit. an include header in __rand48_step.c is fixed as well.
This commit is contained in:
parent
c79cd27e9e
commit
0996faa3d7
|
@ -1,5 +1,5 @@
|
|||
#include <stdlib.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
uint64_t __rand48_step(unsigned short *xi, unsigned short *lc)
|
||||
{
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
|
||||
int rand_r(unsigned *seed)
|
||||
{
|
||||
return (*seed = *seed * 1103515245 + 12345) & 0x7fffffff;
|
||||
return (*seed = *seed * 1103515245 + 12345)/2;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue