1 static unsigned char foo[256];
2 
arc4_init(void)3 arc4_init(void)
4 {
5   int n;
6 
7   for (n = 0; n < 256; n++)
8     foo[n] = n;
9 }
10