]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/dlopen-executable/foo.c
d63901138f35b4b55e53d3153dee8fa7f3995bf4
[apple/dyld.git] / unit-tests / test-cases / dlopen-executable / foo.c
1 int foo()
2 {
3 return 10;
4 }
5
6 int main()
7 {
8 return 0;
9 }
10