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