]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/bind_at_load/main.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / bind_at_load / main.c
1 #include <stddef.h>
2
3 extern void foo();
4 extern void foo2() __attribute__((weak_import));
5 extern void bar();
6
7 int main()
8 {
9 foo();
10 bar();
11 if ( &foo2 != NULL )
12 foo2();
13 return 0;
14 }