9 lines
143 B
C
9 lines
143 B
C
|
|
||
|
#include <stdlib.h>
|
||
|
#include "random.h"
|
||
|
|
||
|
void Random__random_step(Random__random_out *o) {
|
||
|
o->z = ((double)random())/((double)RAND_MAX);
|
||
|
}
|
||
|
|