]>
Commit | Line | Data |
---|---|---|
832b6fce A |
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 "common.h" | |
8 | ||
9 | int main() | |
10 | { | |
11 | if ( ok() ) | |
12 | PASS("upward-dylib-init-order"); | |
13 | else | |
14 | FAIL("upward-dylib-init-order"); | |
15 | ||
16 | return EXIT_SUCCESS; | |
17 | } | |
18 | ||
19 |