#include <acknex.h>
void * void_pointer(); // create a pointer to a 'void'
void test_function()
{
printf("test");
}
void main()
{
void_pointer = test_function; // the pointer should point to 'test_function'
void_pointer(); // call the void the pointer points to
}