]> git.saurik.com Git - apple/ld64.git/blob - ld64-134.9/unit-tests/test-cases/thumb-pointer/foo.c
ld64-134.9.tar.gz
[apple/ld64.git] / ld64-134.9 / unit-tests / test-cases / thumb-pointer / foo.c
1
2
3 extern void bar1();
4 extern void bar2();
5 extern char bar_array[];
6
7 void foo1() {}
8 void foo2() {}
9 char foo_array[3] = { 1,2,3 };
10
11
12
13 void* foostuff[] = { &foo1, &foo2, foo_array, &foo_array[3] };
14 void* barstuff[] = { &bar1, &bar2, bar_array, &bar_array[3] };