Subject: Re: amd64 LONG_BIT definition To: Nicolas Joly <njoly@pasteur.fr> From: Johan Danielsson <joda@pdc.kth.se> List: port-amd64 Date: 09/19/2003 13:56:37
Nicolas Joly <njoly@pasteur.fr> writes:
> As this is a 64bit platform, shouldn't it be defined to 64 instead ?
#include <stdio.h>
main()
{
if(sizeof(long) == 8)
printf("Yeah, you're right.\n");
else
printf("Nah.\n");
}
/Johan