mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
16 lines
137 B
C
16 lines
137 B
C
struct _foo
|
|
{
|
|
int x;
|
|
int y;
|
|
int z;
|
|
};
|
|
|
|
typedef struct _foo Foo;
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
Foo *foo = 0;
|
|
return 0;
|
|
}
|