old-cross-binutils/gdb/testsuite/gdb.mi/gdb701.c
Andrew Cagney 0d863d0396 2004-10-14 Andrew Cagney <cagney@gnu.org>
* gdb.mi/gdb701.c (main): Return 0.
2004-10-14 19:13:24 +00:00

15 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;
}