]> git.wh0rd.org Git - ICEs.git/blob - 140017/ice.ii
initial import
[ICEs.git] / 140017 / ice.ii
1 static const long unsigned sizes[] = {
2         sizeof(int), sizeof(long)
3 };
4 static long unsigned maxSize(const long unsigned *v)
5 {
6         unsigned long max = 0;
7         unsigned long i = 0;
8         for (; i < 10; i++)
9                 if (v[i] > max)
10                         max = v[i];
11         return max;
12 }
13 static unsigned long a = maxSize(sizes);