repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mips: add vdso support
[musl.git]
/
src
/
prng
/
seed48.c
blob
e0699c092afd677bc40339707ac4ca1ab7e265ea
1
#include <stdlib.h>
2
#include <string.h>
3
4
extern
unsigned short
__seed48
[
7
];
5
6
unsigned short
*
seed48
(
unsigned short
*
s
)
7
{
8
static unsigned short
p
[
3
];
9
memcpy
(
p
,
__seed48
,
sizeof
p
);
10
memcpy
(
__seed48
,
s
,
sizeof
p
);
11
return
p
;
12
}