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