annotate test/tmp12.c @ 928:96c53f76b360

fix
author kono
date Sun, 13 Apr 2014 10:21:40 +0900
parents a379da780856
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
467
32737bad7489 fix list/tag interference
kono
parents: 427
diff changeset
1 int printf(const char *format, ...);
161
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
2
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
3
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
4 struct {
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
5 int a;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
6 char *b;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
7 } x1;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
8
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
9 // int b;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
10
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
11 main()
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
12 {
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
13 int a;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
14 x1.a = 1;
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
15 a = 133;
491
a379da780856 cond signed/unsigned
kono
parents: 467
diff changeset
16 printf("#0015:%d %d\n",x1.a,a);
172
096559f07a70 some check
kono
parents: 161
diff changeset
17 return 0;
161
cc2fc5c0dfe5 struct field fix
kono
parents:
diff changeset
18 }