Various minor fixes for compiler/linter (other then splint itself) warnings.
[splint-patched.git] / test / unnamedsu.c
blobfe498bd2d800692e032c9f2fe762480f3dd8df35
1 typedef struct _su
3 int x1;
4 union
6 int u1;
7 int u2;
8 } ;
9 int x2;
10 } su;
12 su wtd = { 1, NULL, 2 };
14 int f (su *s)
16 return s->u1 + s->x1;