http://www.ibiblio.org/pub/historic-linux/ftp-archives/sunsite.unc.edu/Sep-29-1996...
[xscreensaver] / utils / yarandom.h
1 #undef random
2 #undef rand
3 #undef drand48
4 #undef srandom
5 #undef srand
6 #undef srand48
7
8 #define random()   ya_random()
9 #define srandom(i) ya_rand_init(0)
10
11 #undef P
12 #if __STDC__
13 # define P(x)x
14 #else
15 # define P(x)()
16 #endif
17
18 extern unsigned int ya_random P((void));
19 extern void ya_rand_init P((unsigned int));