]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/branch-islands/hello.c
ld64-133.3.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");
8 foo();
afe874b1 9 return 0;
77cc3118
A
10}
11