diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-07 23:02:40 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:30 -0400 |
commit | f9db9eca40fdc78fae258b8e12eb689fc2d5e0e5 (patch) | |
tree | 335fa5ffce30eba458bd0cf0382215be036f6912 /src/prng/__rand48_step.c | |
parent | 01294da7f71958ed0d3aa5bdc8d625c405c8926a (diff) | |
download | musl-f9db9eca40fdc78fae258b8e12eb689fc2d5e0e5.tar.gz musl-f9db9eca40fdc78fae258b8e12eb689fc2d5e0e5.tar.bz2 musl-f9db9eca40fdc78fae258b8e12eb689fc2d5e0e5.tar.xz musl-f9db9eca40fdc78fae258b8e12eb689fc2d5e0e5.zip |
add and use internal header for *rand48 lcg
Diffstat (limited to 'src/prng/__rand48_step.c')
-rw-r--r-- | src/prng/__rand48_step.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/prng/__rand48_step.c b/src/prng/__rand48_step.c index 961d30fc..94703d07 100644 --- a/src/prng/__rand48_step.c +++ b/src/prng/__rand48_step.c @@ -1,4 +1,5 @@ #include <stdint.h> +#include "rand48.h" uint64_t __rand48_step(unsigned short *xi, unsigned short *lc) { |