mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
8038ed9723
* gdb701.c: New file.
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;
|
|
exit (0);
|
|
}
|