/usr/share/doc/libsprng2-doc/EXAMPLES/myrandom.c is in libsprng2-doc 2.0a-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | #include <stdio.h>
#include <stdlib.h>
double myrandom_() /* remove _ before C compilation */
{
return (double) rand()/RAND_MAX;
}
|