Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
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
);
}