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