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