20 lines
191 B
C
20 lines
191 B
C
struct S0
|
|
{
|
|
void* m0;
|
|
};
|
|
|
|
typedef const void* POINTER;
|
|
|
|
struct S1
|
|
{
|
|
POINTER m0;
|
|
};
|
|
|
|
void foo(struct S0* a __attribute__((unused)))
|
|
{
|
|
}
|
|
|
|
void bar(struct S1* a __attribute__((unused)))
|
|
{
|
|
}
|