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
/
rand.c
blob
c000cd248cef667bab257940768616c9349f7d70
1
#include <stdlib.h>
2
#include <stdint.h>
3
4
static uint64_t
seed
;
5
6
void
srand
(
unsigned
s
)
7
{
8
seed
=
s
-
1
;
9
}
10
11
int
rand
(
void
)
12
{
13
seed
=
6364136223846793005ULL
*
seed
+
1
;
14
return
seed
>>
33
;
15
}