]> git.saurik.com Git - apple/ld64.git/blob - ld64-134.9/unit-tests/test-cases/dead_strip-archive-eh/bar.cxx
ld64-134.9.tar.gz
[apple/ld64.git] / ld64-134.9 / unit-tests / test-cases / dead_strip-archive-eh / bar.cxx
1
2 #include <stdio.h>
3
4 void doit()
5 {
6 printf("hello there %s\n", "world");
7
8 }
9
10 void bar()
11 {
12 doit();
13 }
14