Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.base/opaque1.c
2023-03-06 14:48:14 +01:00

13 lines
136 B
C

struct foo {
int a;
int b;
} afoo = { 1, 2};
struct foo *getfoo ()
{
return (&afoo);
}
void putfoo (struct foo *foop)
{
}