Revert "Add predictability in CType initialization."
[tinycc.git] / tests2 / 39_typedef.c
blob79ab58b7993c4eac7996e77d70faadf0c99a925d
1 #include <stdio.h>
3 typedef int MyInt;
5 struct FunStruct
7 int i;
8 int j;
9 };
11 typedef struct FunStruct MyFunStruct;
13 typedef MyFunStruct *MoreFunThanEver;
15 int main()
17 MyInt a = 1;
18 printf("%d\n", a);
20 MyFunStruct b;
21 b.i = 12;
22 b.j = 34;
23 printf("%d,%d\n", b.i, b.j);
25 MoreFunThanEver c = &b;
26 printf("%d,%d\n", c->i, c->j);
28 return 0;
31 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/