blob: 93977c0931a0a00bff3a67a297743472d84f9bfb [file] [log] [blame]
typedef struct _foo foo;
extern foo bar;
struct _foo {
int a;
};
void baz(void)
{
bar.a = 0;
}