mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-04 09:37:11 +02:00
stdlib: automatically seed PRNG with srand(1)
This commit is contained in:
parent
7eb2a6e8ab
commit
74b805e8b5
1 changed files with 6 additions and 0 deletions
6
3rdparty/tinymt32/rand.c
vendored
6
3rdparty/tinymt32/rand.c
vendored
|
@ -12,3 +12,9 @@ int rand(void)
|
|||
{
|
||||
return tinymt32_generate_uint32(&random) & 0x7fffffff;
|
||||
}
|
||||
|
||||
__attribute__((constructor))
|
||||
static void init_prng(void)
|
||||
{
|
||||
srand(1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue