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

15 lines
237 B
C

/* This is intended to be a vague simulation of cfront output. */
#line 1 "langs2.cxx"
extern int csub (int);
int
foo__Fi (int x)
{
return csub (x / 2);
}
extern int cppsub_ (int *y);
int
cppsub_ (int * y)
{
return foo__Fi (*y);
}