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