]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/upward-dylib/main2.c
dyld-360.19.tar.gz
[apple/dyld.git] / unit-tests / test-cases / upward-dylib / main2.c
1 #include <stdio.h> // fprintf(), NULL
2 #include <stdlib.h> // exit(), EXIT_SUCCESS
3
4 #include "test.h" // PASS(), FAIL(), XPASS(), XFAIL()
5
6
7 #include "up.h"
8 #include "down.h"
9
10 int main()
11 {
12 if ( getdownsup() )
13 PASS("upward-dylib");
14 else
15 FAIL("upward-dylib");
16
17 return EXIT_SUCCESS;
18 }
19
20