]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/weak_import-disable/main.c
ld64-274.1.tar.gz
[apple/ld64.git] / unit-tests / test-cases / weak_import-disable / main.c
1
2 extern void foo()
3 #if MAKE_FOO_WEAK_IMPORT
4 __attribute__((weak_import))
5 #endif
6 ;
7
8
9 int main()
10 {
11 foo();
12
13 return 0;
14 }
15