]>
git.saurik.com Git - apple/dyld.git/blame_incremental - unit-tests/test-cases/rpath-DYLD_ROOT_PATH/main.c
... / ...
Commit | Line | Data |
| 1 | |
| 2 | #include <stdio.h> |
| 3 | #include <stdlib.h> |
| 4 | #include <mach-o/dyld.h> |
| 5 | |
| 6 | #include "test.h" |
| 7 | |
| 8 | extern int foo(); |
| 9 | |
| 10 | int main() |
| 11 | { |
| 12 | if ( foo() ) |
| 13 | return EXIT_SUCCESS; |
| 14 | else |
| 15 | return EXIT_FAILURE; |
| 16 | } |