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