1#include <stdio.h>
2#include <stdlib.h>
3#include <mach-o/dyld.h>
4
5#include "test.h"
6
7extern void foo();
8
9int main()
10{
11	foo();
12	PASS("loader_path-symlink");
13	return EXIT_SUCCESS;
14}
15