Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
src
/
prng
/
lcong48.c
blob: 32b27d423aa1dd0b6341176479bef6596287d3da [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
<string.h>
extern
unsigned
short
__seed48
[
7
];
void
lcong48
(
unsigned
short
p
[
7
])
{
memcpy
(
__seed48
,
p
,
sizeof
__seed48
);
}