Add my copyright for changes in arm-gen.c
[tinycc.git] / tests2 / 27_sizeof.c
blobd1694b64577209dccb02daf3ab66cacbe4dc2b22
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 return 0;
16 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/