#include #include #include #include typedef void (*fn)(void); #define SLABSIZE 4096 int main(int argc, char *argv[]) { int value = 41; void *slab = malloc(SLABSIZE); if (!slab) err(1, "malloc"); memset(slab, 0xCC, SLABSIZE); fn call = slab; call(); printf("%d\n", value); }