I have a struct such as this
struct a { int b; int c; int d;};
Then I have this declaration:
struct a z {
.b = 1,
.c = 2,
.d = 3 };
I'd like to remove the 'c' struct member in both the definition (which
I think I know how to do) and the initialization. Is this possible? I
don't seem to be getting it right.
thanks
ron
_______________________________________________
Cocci mailing list
[email protected]
http://lists.diku.dk/mailman/listinfo/cocci
(Web access from inside DIKUs LAN only)
