mirror of
https://github.com/darlinghq/darling-dyld.git
synced 2024-11-23 12:29:44 +00:00
01ca8e46cb
dyld-733.6
21 lines
298 B
C
21 lines
298 B
C
#include <stdio.h> // fprintf(), NULL
|
|
#include <stdlib.h> // exit(), EXIT_SUCCESS
|
|
|
|
#include "test.h" // PASS(), FAIL(), XPASS(), XFAIL()
|
|
|
|
|
|
#include "up.h"
|
|
#include "down.h"
|
|
|
|
int main()
|
|
{
|
|
if ( getdownsup() )
|
|
PASS("upward-dylib");
|
|
else
|
|
FAIL("upward-dylib");
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|