blob: d798feec54382905f5d0c374e2440e7cf98efcbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef __mt_rand_h
#define __mt_rand_h
void mt_seed (unsigned long seed);
unsigned long mt_reload (void);
unsigned long mt_random (void);
int mt_rand (void);
#endif /* __mt_rand_h */
|