]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/weak-def-ordinal/foo.c
ld64-85.2.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / weak-def-ordinal / foo.c
1
2 int __attribute__((weak)) aaa()
3 {
4 return 0;
5 }
6
7 int __attribute__((weak)) bbb()
8 {
9 return 0;
10 }
11