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