bc3eceea769396395b1d6dbcbae40e52c5b0899e
[openbsd] /
1 #include <stdio.h>
2
3 foo (int a, int b)
4 {
5     int c;
6     if (a<=b)
7         c=b-a;
8     else
9         c=b+a;
10     return c;
11 }
12
13 int main()
14 {
15     int a=7, b=8, c;
16     
17     c = foo(a, b);
18
19 return 0;
20 }
21