• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/testsuite/gdb.base/
1/* This is intended to be a vague simulation of cfront output.  */
2#ifdef PROTOTYPES
3#line 1 "langs2.cxx"
4extern int csub (int);
5int
6foo__Fi (int x)
7{
8  return csub (x / 2);
9}
10
11extern int cppsub_ (int *y);
12int
13cppsub_ (int * y)
14{
15  return foo__Fi (*y);
16}
17#else
18#line 1 "langs2.cxx"
19extern int csub ();
20int
21foo__Fi (x) int x;
22{
23  return csub (x / 2);
24}
25
26extern int cppsub_ ();
27int
28cppsub_ (y) int *y;
29{
30  return foo__Fi (*y);
31}
32#endif
33