Name: Anonymous 2011-03-25 14:46
#if 0
cc -O3 -fno-exceptions "$0" -o "${0%.* }"
strip ${0%.* }
exit
#endif
#include <stdio.h>
void __attribute__((hot) (naked)) coed(void)
{ puts("HOT NAKED STRIPPING COEDS"); }
int main() {
coed();
return 0;
}