summaryrefslogtreecommitdiff
path: root/cil/doc/examples/ex46.txt
blob: 1f87ec2f7eb6f00bec7bd71015883a00209d759b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Generated by CIL v. 1.3.5 */
/* print_CIL_Input is true */

#line 1 "cilcode.tmp/ex46.c"
static int bar(int x , char y ) 
{ 

  {
#line 2
  return (x + (int )y);
}
}
#line 6 "cilcode.tmp/ex46.c"
int foo(int x , char y ) 
{ int tmp ;

  {
#line 6
  tmp = bar(x, y);
#line 6
  return (tmp);
}
}