]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/weak-def-auto-hide/main.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / weak-def-auto-hide / main.c
1 #include <stdio.h>
2
3 void __attribute__((weak)) my_weak()
4 {
5 }
6
7 extern void my_other_weak();
8
9 int main()
10 {
11 my_weak();
12 my_other_weak();
13 return 0;
14 }
15