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
10int main()
11{
12	if ( getdownsup() )
13		PASS("upward-dylib");
14	else
15		FAIL("upward-dylib");
16
17	return EXIT_SUCCESS;
18}
19
20
21