Name: Anonymous 2010-11-29 21:45
#include <stdlib.h>
// d is a demon function pointer type
typedef void (*d)();
int main(){
void *evil = malloc(666); // Cast from pure evilty
d bsd; // the BSD kernel is a demon
bsd = (d)evil; // yes, the most evil of them all
bsd(); // Call upon it to rule the computer
free(bsd); // Not included in other BSD variants
}
// d is a demon function pointer type
typedef void (*d)();
int main(){
void *evil = malloc(666); // Cast from pure evilty
d bsd; // the BSD kernel is a demon
bsd = (d)evil; // yes, the most evil of them all
bsd(); // Call upon it to rule the computer
free(bsd); // Not included in other BSD variants
}