blob: 56a7f2825751e05c6d05cf41f51ed4e1826c3359 [file] [log] [blame]
Chris Lattner6200a572003-05-14 21:08:04 +00001#include <stdio.h>
2
3extern int table[];
4
5int main() {
6 printf("%d %d %d %d\n", table[0], table[1], table[2], table[3]);
7 return table[1];
8}
9
10int table[] = { 1, 0, 3, 4 };