blob: 12d1ace0d9ea1c92b3bd3e91afc1762f97a202c5 [file] [log] [blame]
// Compile with:
// gcc -g -Wall -shared -o libtest25-typedef-v0.so test25-typedef-v0.c
struct PrivateType0
{
int m0;
};
struct PrivateType1
{
int m0;
};
typedef struct PrivateType0 Type;
typedef struct PrivateType1* TypePtr;
void
bar(Type *t)
{
if (t)
;
}
void
baz(TypePtr t)
{
if (t)
;
}