]>
git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/lazy-dylib/bad2.c
Commit | Line | Data |
2f2f92e4 A |
1 | #include <stdio.h> |
2 | #include <stdlib.h> |
3 | |
4 | |
5 | extern int foo(); |
6 | |
7 | int main() |
8 | { |
9 | int (*func)() = foo; |
10 | if ( func != NULL ) |
11 | (*func)(); |
12 | return 0; |
13 | } |