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