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