2014-01-17 05:32:22 +00:00
|
|
|
#include <inttypes.h> /* PRIu32 */
|
|
|
|
|
#include <stdlib.h> /* arc4random */
|
|
|
|
|
#include <stdio.h> /* printf */
|
2013-04-10 23:57:08 -07:00
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main()
|
|
|
|
|
{
|
2014-01-17 05:32:22 +00:00
|
|
|
printf("%" PRIu32 "\n", arc4random());
|
|
|
|
|
return 0;
|
2013-04-10 23:57:08 -07:00
|
|
|
}
|