]>
git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/llvm-integration/b4.c
Commit | Line | Data |
a61fdf0a A |
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 | } |