1
2
3// put test code in a dylib so that is slides
4extern void realmain();
5
6int main()
7{
8	realmain();
9	return 0;
10}
11
12
13