Open
Description
When I'm trying to debug #51788.
D:/jl/julia/src/gc-debug.c:446:44: warning: implicit declaration of function 'erand48'; did you mean 'srand'? [-Wimplicit-function-declaration]
446 | double randinterv = floor(fabs(log(erand48(num->random))) / scale) + 1; | ^
| ^~~~~~~
| srand
It looks like it's using a function erand48
that is not in the C standard.
Line 444 in ca1e519
NOTE: This issue is not related to test failures in PR.