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}
17