]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/loader_path-symlink/main.c
dyld-733.6.tar.gz
[apple/dyld.git] / unit-tests / test-cases / loader_path-symlink / main.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <mach-o/dyld.h>
4
5 #include "test.h"
6
7 extern void foo();
8
9 int main()
10 {
11 foo();
12 PASS("loader_path-symlink");
13 return EXIT_SUCCESS;
14 }