]> andersk Git - splint.git/blob - test/unnamedsu.c
Remove unused cpplib_createDefinition.
[splint.git] / test / unnamedsu.c
1 typedef struct _su
2 {
3   int x1;
4   union
5   {
6     int u1;
7     int u2;
8   } ;
9   int x2;
10 } su;
11
12 su wtd = { 1, NULL, 2 };
13
14 int f (su *s)
15 {
16   return s->u1 + s->x1;
17 }
18
19
This page took 0.888741 seconds and 5 git commands to generate.