Comment Re:Define 64-bit (Score 2, Informative) 457
eh. You guys clearly have never had a 64-bit box. An int is 32-bits on most 64-bit archs.
main(){
printf("My computer is %d bits\n", sizeof(void*) * 8);
}
main(){
printf("My computer is %d bits\n", sizeof(void*) * 8);
}