]> git.saurik.com Git - apple/ld64.git/blob - FireOpal/unit-tests/test-cases/llvm-integration/b4.c
ld64-85.2.1.tar.gz
[apple/ld64.git] / FireOpal / unit-tests / test-cases / llvm-integration / b4.c
1 extern int foo4(void);
2
3 int foo4(void)
4 {
5 return 21;
6 }
7 static int myfoo()
8 {
9 return foo4();
10 }
11 int foo2() {
12 return myfoo();
13 }