]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/branch-islands/hello.c
ld64-241.9.tar.gz
[apple/ld64.git] / unit-tests / test-cases / branch-islands / hello.c
CommitLineData
77cc3118
A
1#include <stdio.h>
2
3extern void foo();
4
5int main()
6{
7 fprintf(stdout, "hello\n");
9543cb2f 8 foo();
afe874b1 9 return 0;
77cc3118
A
10}
11
9543cb2f
A
12void back()
13{
14}