main.c   [plain text]



int f = 0;
int func() {
	return 0;
}

__typeof(&func) funcPtr = &func;
int _start() {
	return funcPtr() + f;
}