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