Show attr10a.c syntax highlighted
union wait { int zz; };
union __WAIT_STATUS
{
union wait *__uptr;
int *__iptr;
} __attribute__ ((__transparent_union__));
void f(union __WAIT_STATUS __foo);
void g()
{
int z;
f(&z);
}
See more files for this project here