repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
HaikuDepot: notify work status from main window
[haiku.git]
/
src
/
libs
/
compat
/
freebsd11_network
/
libkern.c
blob
c3066f919372277d74a6472201fba7154924547d
1
/*
2
* Copyright 2009, Colin Günther, coling@gmx.de.
3
* All rights reserved. Distributed under the terms of the MIT License.
4
*/
5
6
7
#include <compat/sys/libkern.h>
8
9
10
uint32_t
11
arc4random
(
void
)
12
{
13
return
random
();
14
}
15