]>
git.saurik.com Git - apple/ld64.git/blame_incremental - unit-tests/test-cases/lazy-dylib/bad2.c
... / ...
Commit | Line | Data |
| 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 | } |