1
2
3int bar[] = { 20, 21, 22, 23 };
4
5
6int __attribute__((weak)) frob[] = { 30, 31, 32, 33 };
7
8int bar_getfrob(int x) { return frob[x]; }
9