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