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

9 lines
103 B
C

static int bazx = 'b' + 'a' + 'z';
int baz (int x)
{
if (x)
return bazx;
else
return 0;
}