Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/gdb/testsuite/gdb.mi/gdb701.c
2023-03-06 14:48:14 +01: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;
}