mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
10 lines
151 B
C
10 lines
151 B
C
/*! \file rng.h
|
|
\brief A better random number generator.
|
|
*/
|
|
|
|
#ifndef __RAND_H
|
|
#define __RAND_H
|
|
|
|
unsigned int true_rand(void);
|
|
#endif /* __RAND_H */
|