intmain(void){while(1){}return0;}voidexit(intcode){while(1);} NOTE:In case you're wondering, the C compiler prefixes an underscore to the generated symbols for functions, so we don't include an underscore, otherwise we'd end up with a function that the linker sees as__exit. If we...