x86-asm: Implement clflush opcode
[tinycc.git] / tests / tests2 / 27_sizeof.c
blob5ae0ede54e86832ce3ef776a57a2b9084b7be146
1 #include <stdio.h>
3 int main()
5 char a;
6 int b;
7 double c;
9 printf("%d\n", sizeof(a));
10 printf("%d\n", sizeof(b));
11 printf("%d\n", sizeof(c));
13 printf("%d\n", sizeof(!a));
15 return 0;
18 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/