shithub: sl

ref: be2ad952a4c1c3eea9ccc03fc216d7641ef7caf6
dir: /random.h/

View raw version
#ifndef RANDOM_H_
#define RANDOM_H_

void randomize(void);
double genrand_double(void);
uint64_t genrand_uint64(void);
uint32_t genrand_uint32(void);
int64_t genrand_int63(void);

#endif