#include <stdio.h>

void void_func(void);

void void_func(void){
	// Do nothing
}

void (*shellcode())(); // -_-;

void (*shellcode())(){ // -_-;;
	return &void_func;
}

int main(void) {
	(*shellcode())(); // -_-;;;
	return 0;
}
