repo.or.cz
/
uclibc-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
microblaze: add ulps file
[uclibc-ng.git]
/
test
/
stdlib
/
testarc4random.c
blob
14ff1cc368179ae9974dea89858097c8a3202434
1
#include <stdlib.h>
2
#include <stdio.h>
3
4
int
main
(
void
)
5
{
6
int
random_number
;
7
random_number
=
arc4random
() %
65536
;
8
printf
(
"%d
\n
"
,
random_number
);
9
return
0
;
10
}