aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/langs2.c
blob: 69f290d732306f082f376940d38b07c4190fc2d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* This is intended to be a vague simulation of cfront output.  */
#line 1 "langs2.cxx"
extern int csub ();
int
foo__Fi (x) int x;
{
  return csub (x / 2);
}

extern int cppsub_ (int *);
int
cppsub_ (y) int *y;
{
  return foo__Fi (*y);
}