This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author trentm
Recipients lemburg, loewis, ronaldoussoren, trentm
Date 2008-10-07.16:29:00
SpamBayes Score 0.009026989
Marked as misclassified No
Message-id <6db0ea510810070928y51d35074i84c7ec18db8d03d8@mail.gmail.com>
In-reply-to <48EB7F00.2080703@egenix.com>
Content
> I get:
>
> sizeof(_Bool)=4 bytes
>
> on a G4 PPC.

Same thing on a G5 PPC:

$ cat main.c
#include <stdio.h>

int main(void) {
    printf("sizeof(_Bool) is %d\n", sizeof(_Bool));
}
$ gcc main.c
$ ./a.out
sizeof(_Bool) is 4
History
Date User Action Args
2008-10-07 16:29:02trentmsetrecipients: + trentm, lemburg, loewis, ronaldoussoren
2008-10-07 16:29:01trentmlinkissue4060 messages
2008-10-07 16:29:00trentmcreate