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