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