Jeff Trawick wrote: >Okay, after you get through laughing share your ideas. This patch >gives me enough information to know which build I'm running with. > >Index: server/main.c > ...
>+ printf("Pointer size: %d\n", sizeof(void *));
>
How about
printf("Pointer size: %d bits\n", 8*sizeof(void*)); ?
to make it a bit less subtle?
--Brian
