summaryrefslogtreecommitdiff
path: root/src/prng/seed48.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-07 23:02:40 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:30 -0400
commitf9db9eca40fdc78fae258b8e12eb689fc2d5e0e5 (patch)
tree335fa5ffce30eba458bd0cf0382215be036f6912 /src/prng/seed48.c
parent01294da7f71958ed0d3aa5bdc8d625c405c8926a (diff)
downloadmusl-f9db9eca40fdc78fae258b8e12eb689fc2d5e0e5.tar.gz
add and use internal header for *rand48 lcg
Diffstat (limited to 'src/prng/seed48.c')
-rw-r--r--src/prng/seed48.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/prng/seed48.c b/src/prng/seed48.c
index e0699c09..bce7b339 100644
--- a/src/prng/seed48.c
+++ b/src/prng/seed48.c
@@ -1,7 +1,6 @@
#include <stdlib.h>
#include <string.h>
-
-extern unsigned short __seed48[7];
+#include "rand48.h"
unsigned short *seed48(unsigned short *s)
{