Message 74463 - Python tracker
Message74463
| 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:02 | trentm | set | recipients: + trentm, lemburg, loewis, ronaldoussoren |
| 2008-10-07 16:29:01 | trentm | link | issue4060 messages |
| 2008-10-07 16:29:00 | trentm | create | |