]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/llvm-integration/a5.c
ld64-127.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / llvm-integration / a5.c
CommitLineData
a61fdf0a
A
1extern int foo2(void);
2extern int foo3(void);
3
4int foo1()
5{
6 int i = 42;
7 if (foo2())
8 i = foo3();
9 return i;
10}