Done a bit of testing wink
Code:
#include <acknex.h>

void TestFunction()
{
	error("TestFunction was called");
}

void CallFunc(void * func)
{
	void * temp_void();
	temp_void = func;
	
 	if(temp_void) { temp_void(); }	
}

void main()
{
	CallFunc(TestFunction);
}



POTATO-MAN saves the day! - Random