Typo fix.
[pachi.git] / random.h
blob6107574798ad33f7328b35b00eaa3e23b8240733
1 #ifndef ZZGO_RANDOM_H
2 #define ZZGO_RANDOM_H
4 void fast_srandom(unsigned long seed);
5 /* Note that only 16bit numbers can be returned. */
6 unsigned long fast_random(unsigned int max);
8 #endif