Message95121
| Author |
jasper |
| Recipients |
jasper, mark.dickinson |
| Date |
2009年11月10日.16:59:15 |
| SpamBayes Score |
2.3536108e-05 |
| Marked as misclassified |
No |
| Message-id |
<1257872357.78.0.5611347467.issue7296@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
this little test program:
#include <unistd.h>
int main(int argc, char*argv[])
{
printf("short = %d\n", sizeof(short));
printf("int = %d\n", sizeof(int));
printf("float = %d\n", sizeof(float));
printf("long = %d\n", sizeof(long));
printf("double = %d\n", sizeof(double));
printf("long long = %d\n", sizeof(long long));
printf("double long = %d\n", sizeof(double long));
return 0;
}
gives the following values on mips64:
short = 2
int = 4
float = 4
long = 8
double = 8
long long = 8
double long = 16
is there any other thing I should check? |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2009年11月10日 16:59:17 | jasper | set | recipients:
+ jasper, mark.dickinson |
| 2009年11月10日 16:59:17 | jasper | set | messageid: <1257872357.78.0.5611347467.issue7296@psf.upfronthosting.co.za> |
| 2009年11月10日 16:59:16 | jasper | link | issue7296 messages |
| 2009年11月10日 16:59:15 | jasper | create |
|